From 1efa0742c9177b534e15ffc0b50d3bcb7b724551 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Sun, 17 Oct 2021 00:20:03 +0200 Subject: [PATCH] Clean and update locales (#1402) * Remove untranslated languages * Add country prefix to some locales * Remove locale template file * Prepare nl_NL and tr_TR locale for future use * Sort locales list and put en_Us at the top * Enhance locale Makefile Add clean target for locales Set locale all target to clean and build Ensure we keep issue tracker on po updates * Update locales headers * Scan sources files and update locales --- legacy/Makefile | 3 +- legacy/application/models/Locale.php | 8 +- legacy/locale/Makefile | 13 +- legacy/locale/ast/LC_MESSAGES/libretime.po | 5459 -------- legacy/locale/az/LC_MESSAGES/libretime.po | 5459 -------- legacy/locale/cs_CZ/LC_MESSAGES/libretime.po | 6869 +++++----- legacy/locale/da_DK/LC_MESSAGES/libretime.po | 5459 -------- legacy/locale/de_AT/LC_MESSAGES/libretime.po | 6836 +++++----- legacy/locale/de_DE/LC_MESSAGES/libretime.po | 7054 +++++------ legacy/locale/el_GR/LC_MESSAGES/libretime.po | 6830 +++++----- legacy/locale/en_CA/LC_MESSAGES/libretime.po | 9746 +++++++-------- legacy/locale/en_GB/LC_MESSAGES/libretime.po | 10001 +++++++-------- legacy/locale/en_US/LC_MESSAGES/libretime.po | 9746 +++++++-------- legacy/locale/es_ES/LC_MESSAGES/libretime.po | 7331 +++++------ legacy/locale/fr_FR/LC_MESSAGES/libretime.po | 10418 ++++++++-------- legacy/locale/hr_HR/LC_MESSAGES/libretime.po | 6831 +++++----- legacy/locale/hu_HU/LC_MESSAGES/libretime.po | 7349 +++++------ legacy/locale/hy/LC_MESSAGES/libretime.po | 5456 -------- legacy/locale/hy_AM/LC_MESSAGES/libretime.po | 5459 -------- legacy/locale/id_ID/LC_MESSAGES/libretime.po | 5458 -------- legacy/locale/it_IT/LC_MESSAGES/libretime.po | 6715 +++++----- legacy/locale/ja/LC_MESSAGES/libretime.po | 5565 --------- legacy/locale/ja_JP/LC_MESSAGES/libretime.po | 9672 +++++++------- legacy/locale/ka/LC_MESSAGES/libretime.po | 5458 -------- legacy/locale/ko_KR/LC_MESSAGES/libretime.po | 9681 +++++++------- legacy/locale/lt/LC_MESSAGES/libretime.po | 5461 -------- legacy/locale/nl_NL/LC_MESSAGES/libretime.po | 9814 +++++++-------- legacy/locale/pl_PL/LC_MESSAGES/libretime.po | 6725 +++++----- legacy/locale/pt_BR/LC_MESSAGES/libretime.po | 6720 +++++----- legacy/locale/ro_RO/LC_MESSAGES/libretime.po | 5460 -------- legacy/locale/ru_RU/LC_MESSAGES/libretime.po | 7368 +++++------ legacy/locale/si/LC_MESSAGES/libretime.po | 5459 -------- legacy/locale/sr_RS/LC_MESSAGES/libretime.po | 6831 +++++----- .../sr_RS@latin/LC_MESSAGES/libretime.po | 6827 +++++----- legacy/locale/template/libretime.po | 5459 -------- legacy/locale/tr/LC_MESSAGES/libretime.po | 5496 -------- legacy/locale/tr_TR/LC_MESSAGES/libretime.po | 4287 +++++++ legacy/locale/zh_CN/LC_MESSAGES/libretime.po | 6829 +++++----- 38 files changed, 78481 insertions(+), 163131 deletions(-) delete mode 100644 legacy/locale/ast/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/az/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/da_DK/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/hy/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/hy_AM/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/id_ID/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/ja/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/ka/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/lt/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/ro_RO/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/si/LC_MESSAGES/libretime.po delete mode 100644 legacy/locale/template/libretime.po delete mode 100644 legacy/locale/tr/LC_MESSAGES/libretime.po create mode 100644 legacy/locale/tr_TR/LC_MESSAGES/libretime.po diff --git a/legacy/Makefile b/legacy/Makefile index 835adeba8..4737958a7 100644 --- a/legacy/Makefile +++ b/legacy/Makefile @@ -9,7 +9,8 @@ $(PHP-CS-FIXER): include locale/Makefile -locale-update: .locale-update +locale-update: + $(MAKE) -C locale update locale-build: $(MAKE) -C locale build diff --git a/legacy/application/models/Locale.php b/legacy/application/models/Locale.php index 0273ae121..8ef28e58f 100644 --- a/legacy/application/models/Locale.php +++ b/legacy/application/models/Locale.php @@ -5,13 +5,13 @@ final class Application_Model_Locale private static $domains = ['libretime']; public static $locales = [ - 'en_CA' => 'English (Canada)', - 'en_GB' => 'English (Britain)', 'en_US' => 'English (USA)', 'cs_CZ' => 'Český', - 'de_DE' => 'Deutsch', 'de_AT' => 'Deutsch (Österreich)', + 'de_DE' => 'Deutsch', 'el_GR' => 'Ελληνικά', + 'en_CA' => 'English (Canada)', + 'en_GB' => 'English (Britain)', 'es_ES' => 'Español', 'fr_FR' => 'Français', 'hr_HR' => 'Hrvatski', @@ -19,11 +19,13 @@ final class Application_Model_Locale 'it_IT' => 'Italiano', 'ja_JP' => '日本語', 'ko_KR' => '한국어', + // 'nl_NL' => '', 'pl_PL' => 'Polski', 'pt_BR' => 'Português (Brasil)', 'ru_RU' => 'Русский', 'sr_RS' => 'Српски (Ћирилица)', 'sr_RS@latin' => 'Srpski (Latinica)', + // 'tr_TR' => '', 'zh_CN' => '简体中文', ]; diff --git a/legacy/locale/Makefile b/legacy/locale/Makefile index a8c762a94..f36e7ac36 100644 --- a/legacy/locale/Makefile +++ b/legacy/locale/Makefile @@ -1,9 +1,12 @@ .PHONY: .locale-update build -.DEFAULT: build +.ONESHELL: + +all: clean build SHELL = bash DOMAIN = libretime +ISSUE_TRACKER = https://github.com/LibreTime/libretime/issues PO_FILE = $(DOMAIN).po PO_FILES = $(wildcard */LC_MESSAGES/$(PO_FILE)) MO_FILES = $(PO_FILES:.po=.mo) @@ -11,6 +14,7 @@ MO_FILES = $(PO_FILES:.po=.mo) SRC = application build public XGETTEXT_ARGS = --default-domain=$(DOMAIN) \ + --msgid-bugs-address=$(ISSUE_TRACKER) \ --language=php \ --from-code=UTF-8 \ --no-wrap \ @@ -21,8 +25,8 @@ MSGMERGE_ARGS = --no-fuzzy-matching \ --no-wrap \ --sort-by-file -# This target is run by another Makefile -.locale-update: +update: + cd .. find $(SRC) -name "*.phtml" -o -name "*.php" -type f -print0 | xargs -0 xgettext $(XGETTEXT_ARGS) sed -i 's/CHARSET/UTF-8/g' $(PO_FILE) find ./locale -name $(PO_FILE) -exec msgmerge $(MSGMERGE_ARGS) "{}" $(PO_FILE) \; @@ -32,3 +36,6 @@ MSGMERGE_ARGS = --no-fuzzy-matching \ msgfmt $< -o $@ build: $(MO_FILES) + +clean: + git clean -xdf diff --git a/legacy/locale/ast/LC_MESSAGES/libretime.po b/legacy/locale/ast/LC_MESSAGES/libretime.po deleted file mode 100644 index c375c21cd..000000000 --- a/legacy/locale/ast/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5459 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2014-01-27 10:20+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Asturian (http://www.transifex.com/sourcefabric/airtime/language/ast/)\n" -"Language: ast\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/az/LC_MESSAGES/libretime.po b/legacy/locale/az/LC_MESSAGES/libretime.po deleted file mode 100644 index 47fa7db5a..000000000 --- a/legacy/locale/az/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5459 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Azerbaijani (http://www.transifex.com/sourcefabric/airtime/language/az/)\n" -"Language: az\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/cs_CZ/LC_MESSAGES/libretime.po b/legacy/locale/cs_CZ/LC_MESSAGES/libretime.po index 9ecc19b8c..ee78a84aa 100644 --- a/legacy/locale/cs_CZ/LC_MESSAGES/libretime.po +++ b/legacy/locale/cs_CZ/LC_MESSAGES/libretime.po @@ -1,2496 +1,1604 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Iva Heilova , 2015 # Sourcefabric , 2013 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/sourcefabric/airtime/language/cs_CZ/)\n" +"Language-Team: Czech (Czech Republic)\n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Přihlásit" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "Vítejte v %s demo! Můžete se přihlásit přes uživatelské jméno 'admin' a heslo 'admin'." +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Rok %s musí být v rozmezí 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nové heslo" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Prosím zadejte a potvrďte své nové heslo v políčkách níže." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Historie odvysílaného" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Přehled logu" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Shrnutí souboru" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Shrnutí show" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Správa složek médií" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Nastavení Streamu" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Uložit" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Požadováno)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Dodatečné možnosti" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Následující informace se zobrazí u posluchačů na jejich přehrávačích:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Webová stránka vaší rádiové stanice)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL streamu: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "nebo" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "a" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " do " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Vybrat instanci show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Žádné vysílání" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Najdi" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Vyberte soubor" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Nastavit" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Aktuálně importovaný soubor:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Přidat" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "Znovu projít sledovaný adresář (Tato funkce je užitečná, pokud je síť přeplněna a nedojde k synchronizaci s %s)" +msgid "%s-%s-%s is not a valid date" +msgstr "%s - %s - %s není platné datum" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Odebrat sledovaný adresář" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Nesledujete žádné mediální soubory." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Vyberte dny:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Odstranit" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Opakovat dny:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Najít vysílání" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtrovat historii" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Zobrazit zdroj" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Hlavní zdroj" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" -msgstr "Vítejte v %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s : %s : %s není platný čas" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Správa uživatelů" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Nový uživatel" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Uživatelské jméno" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Jméno" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Příjmení" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Typ uživatele" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Rozšířit statický blok" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Rozšířit dynamický blok" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Název:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Popis:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Doba trvání:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Promíchat Playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Promíchat" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Prázdný playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Vymazat" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Zeslabit: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Zrušit" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Uložit playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Neotevřený playlist" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "UKázat Waveform" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Zesílit: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue in: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Původní délka:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "používá se" +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Vše" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Rozšířené možnosti hledání" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Popis" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL streamu:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Defaultní délka:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Žádný webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Zavřít" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Jméno" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Tvůrce" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Jazyk" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Autorská práva" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Probíhá importování souboru ..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Název:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Tvůrce:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Skladba:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Délka:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Vzorová frekvence:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit frekvence:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Nálada:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Žánr:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Rok:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Označení:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Skladatel:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Dirigent:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Autorská práva:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC číslo" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Internetová stránka:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Jazyk:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Cesta souboru:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamický Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statický Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Audio stopa" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Obsah Playlistu: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Obsah statistického Smart Blocku: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Kritéria dynamickeho Smart Blocku: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Omezit na " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Stav" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Velikost disku" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "předchozí" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Kalendář" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "přehrát" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pauza" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "další" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "vypnout zvuk" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "zapnout zvuk" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "max. hlasitost" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Nutná aktualizace" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Chcete-li přehrávat média, budete si muset buď nastavit svůj prohlížeč na nejnovější verzi nebo aktualizovat svůj%sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Vytvořit soubor přehledu nastavení" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Vytvořit vzor přehledu logů" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Přidat elementy" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Přidat nové pole" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Nastavit defolní šablnu" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Vzory přehledu logů" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Nový vzor přehledu logů" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Vzory přehledu logů nejsou" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Nastavit jako default" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Vzory přehledu souboru" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Nový vzor přehledu souboru" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Nový vzor přehledu souboru" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "O aplikaci" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, open radio software pro plánování a řízení vzdálené stanice. " - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s je distribuován pod %3$s" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "Zde můžete vidět jak začít s používáním %s pro automatizované vysílání:" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Pro podrobnější nápovědu si přečtěte %suživatelský manuál%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Sdílet" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Vyberte stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Přidat toto vysílání" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Aktualizace vysílání" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Co" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Kdy" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Vložení Live Streamu" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Kdo" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Styl" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Začátek" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Název" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Délka" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Žánr" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Označení " - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Předchozí:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Další:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Zdrojové Streamy" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Poslech" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Odhlásit " - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlisty" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Chytré bloky" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Uživatelé" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streamy" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Stav" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Historie odvysílaného" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Historie nastavení" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Statistiky poslechovost" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Nápověda" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Začínáme" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Návod k obsluze" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Stránka nebyla nalezena!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Stránka, kterou hledáte, neexistuje!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio přehrávač" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Přehrát" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Zastavit" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue in" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Nastavit Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Nstavit Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Kurzor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Pozvolné zesilování " - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Pozvolné zeslabování" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Nemáte oprávnění k odpojení zdroje." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Neexistuje zdroj připojený k tomuto vstupu." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Nemáte oprávnění ke změně zdroje." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream bez názvu" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream uložen." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Neplatná forma hodnot." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Uživatel byl úspěšně přidán!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Uživatel byl úspěšně aktualizován!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Nastavení úspěšně aktualizováno!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Náhled" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Vybrat kurzor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Odstranit kurzor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Smazat" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "vysílání neexistuje" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Preference aktualizovány." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Nastavení streamu aktualizováno." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "cesta by měla být specifikována" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problém s Liquidsoap ..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nenalezen" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Něco je špatně." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Přidat do Playlistu" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Přidat do chytrého bloku" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Stáhnout" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplikátní Playlist" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Žádná akce není k dispozici" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Nemáte oprávnění odstranit vybrané položky." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopie %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Nemáte udělen přístup k tomuto zdroji." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Nemáte udělen přístup k tomuto zdroji. " -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "Soubor neexistuje v %s" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Špatný požadavek. Žádný 'mode' parametr neprošel." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Špatný požadavek. 'Mode' parametr je neplatný." -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Nemáte oprávnění k odpojení zdroje." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Neexistuje zdroj připojený k tomuto vstupu." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Nemáte oprávnění ke změně zdroje." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Prohlížíte si starší verzi %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Nemůžete přidávat skladby do dynamických bloků." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemáte oprávnění odstranit vybrané %s (s)." +msgid "%s not found" +msgstr "%s nenalezen" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Můžete pouze přidat skladby do chytrého bloku." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Něco je špatně." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Náhled" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Playlist bez názvu" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Přidat do Playlistu" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Chytrý block bez názvu" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Přidat do chytrého bloku" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Neznámý Playlist" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Smazat" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Stáhnout" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplikátní Playlist" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Žádná akce není k dispozici" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Nemáte oprávnění odstranit vybrané položky." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopie %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Zkontrolujte prosím zda je správné administrátorské jméno/heslo v Systému->Streamovací stránka." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio přehrávač" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Nahrávání:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Mastr stream" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Live Stream" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Nic není naplánované" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Stávající vysílání:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Stávající" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Používáte nejnovější verzi" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Nová verze k dispozici: " -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Přidat do aktuálního playlistu" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Přidat do aktuálního chytrého bloku" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Přidat 1 položku" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Přidat %s položek" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Můžete přidat skladby pouze do chytrých bloků." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Můžete přidat pouze skladby, chytré bloky a webstreamy do playlistů." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Prosím vyberte si pozici kurzoru na časové ose." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Přidat" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Upravit" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Odstranit" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Upravit metadata" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Přidat k vybranému vysílání" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Vyberte" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Vyberte tuto stránku" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Zrušte označení této stránky" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Zrušte zaškrtnutí všech" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Jste si jisti, že chcete smazat vybranou položku(y)?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Naplánováno" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Název" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Tvůrce" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Rychlost přenosu" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Skladatel" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Dirigent" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Autorská práva" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Zakódováno" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Žánr" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Označení " + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Jazyk" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Naposledy změněno" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Naposledy vysíláno" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Délka" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Nálada" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Vlastník" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Opakovat Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Vzorkovací rychlost" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Číslo stopy" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Nahráno" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Internetové stránky" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Rok " -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Nahrávání ..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Vše" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Soubory" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlisty" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Chytré bloky" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Webové streamy" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Neznámý typ: " -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Jste si jisti, že chcete smazat vybranou položku?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Probíhá nahrávání..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Získávání dat ze serveru..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Chybný kód: " -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Chyba msg: " -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Vstup musí být kladné číslo" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Vstup musí být číslo" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Vstup musí být ve formátu: rrrr-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Vstup musí být ve formátu: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Právě nahráváte soubory. %sPřechodem na jinou obrazovku zrušíte nahrávací proces. %sOpravdu chcete opustit tuto stránku?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Otevřít Media Builder" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "prosím nastavte čas '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Váš prohlížeč nepodporuje přehrávání souborů tohoto typu: " -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Dynamický blok není možno ukázat předem" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Omezeno na: " -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Playlist uložen" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Playlist zamíchán" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Airtime si není jistý statusem souboru. To se může stát, když je soubor na vzdálené jednotce, která je nepřístupná nebo když je soubor v adresáři, který již není 'sledovaný'." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Počítat posluchače %s : %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Připomenout za 1 týden" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Nikdy nepřipomínat" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Ano, pomoc Airtime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Obrázek musí být buď jpg, jpeg, png nebo gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Statický chytrý blok uloží kritéria a vygeneruje obsah bloku okamžitě. To vám umožní upravit a zobrazit je v knihovně před přidáním do vysílání." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Dynamický chytrý blok bude ukládat pouze kritéria. Obsah bloku bude generován během přidání do vysílání. Nebudete moci prohlížet a upravovat obsah v knihovně." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Chytré bloky promíchány" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Chytrý blok generován a kritéria uložena" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Chytrý blok uložen" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Zpracovává se..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Vyberte modifikátor" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "obsahuje" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "neobsahuje" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "je" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "není" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "začíná s" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "končí s" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "je větší než" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "je menší než" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "se pohybuje v rozmezí" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Generovat" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Vyberte složku k uložení" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Vyberte složku ke sledování" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2498,2855 +1606,2301 @@ msgstr "" "Jste si jisti, že chcete změnit složku úložiště ?\n" "Tímto odstraníte soubry z vaší Airtime knihovny!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Správa složek médií" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Jste si jisti, že chcete odstranit sledovanou složku?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Tato cesta není v současné době dostupná." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Některé typy streamů vyžadují zvláštní konfiguraci. Detaily o přístupu %sAAC+ Support%s nebo %sOpus Support%s jsou poskytovány." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Připojeno k streamovacímu serveru" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Stream je vypnut" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Získávání informací ze serveru..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Nelze se připojit k streamovacímu serveru" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Zaškrtněte tuto volbu pro zapnutí metadat OGG streamů (metadata streamu jsou název sklady, umělec a název vysílání, které se zobrazí v audio přehrávači). VLC a mpřehrávač mají vážné chyby při přehrávání OGG/VORBIS streamu, který má povolené metadata informace: budou odpojena od streamu po každé písni. Pokud používáte stream OGG a vaši posluchači nevyžadují podporu těchto audio přehrávačů, pak neváhejte a tuto možnost povolte." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Zaškrtněte toto políčko pro automatické vypnutí zdroje Master/Vysílání na odpojení zdroje." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Zaškrtněte toto políčko pro automatické zapnutí Master/Vysílání zdroj na připojení zdroje." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Pokud váš Icecast server očekává uživatelské jméno 'zdroj', může toto pole zůstat prázdné." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Pokud váš live streaming klient nepožádá o uživatelské jméno, toto pople bz mělo být 'zdroj'." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Toto je administrátorské jméno a heslo pro Icecast / SHOUTcast k získání statistik poslechovosti." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Upozornění: Nelze změnit toto pole v průběhu vysílání programu" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Žádný výsledek nenalezen" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Toto následuje stejný bezpečnostní vzor pro výsílání: pouze uživatelé přiřazení k vysílání se mohou připojit." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Zadejte vlastní ověření, které bude fungovat pouze pro toto vysílání." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Ukázka vysílání již neexistuje!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Varování: Vysílání nemohou být znovu linkována." -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Propojením vašich opakujících se show, jakákoliv média zařazena v jakékoliv opakující se show bude také zařazena do dalších opakujících se show." -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Časové pásmo je nastaveno v časovém pásmu stanice defoltně. Show v kalendáři bude zobrazena v lokálním čase nastaveném časovým pásmem vašeho uživatelského rozhraní ve vašem uživatelském nastavení. " -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Vysílání" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Vysílání je prázdné" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Získávání dat ze serveru ..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Toto vysílání nemá naplánovaný obsah." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Toto vysílání není zcela vyplněno." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Leden" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Únor" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Březen" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Duben" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Květen" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Červen" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Červenec" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Srpen" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Září" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Říjen" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Listopad" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Prosinec" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Leden" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Únor" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Březen" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Duben" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Červen" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Červenec" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Srpen" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Září" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Říjen" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Listopad" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Prosinec" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Neděle" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Pondělí" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Úterý" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Středa" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Čtvrtek" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Pátek" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Sobota" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Ne" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Po" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Út" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "St" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Čt" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Pá" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "So" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Vysílání delší než naplánovaný čas bude ukončeno začátkem dalšího vysílání." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Zrušit aktuální vysílání?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Zastavit nahrávání aktuálního vysílání?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "OK" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Obsah vysílání" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Odstranit veškerý obsah?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Odstranit vybranou položku(y)?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Začátek" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Konec" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Trvání" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue in" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Pozvolné zesilování " + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Pozvolné zeslabování" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Vysílání prázdné" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Nahrávání z Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Náhled stopy" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Nelze naplánovat mimo vysílání." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Posunutí 1 položky" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Posunutí %s položek" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Uložit" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Zrušit" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Fade Editor" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Cue Editor" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Prvky Waveform jsou k dispozici v prohlížeči podporující Web Audio API" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Vybrat vše" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Nic nevybrat" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Odebrat vybrané naplánované položky" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Přejít na aktuálně přehrávanou skladbu" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Zrušit aktuální vysílání" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Otevřít knihovnu pro přidání nebo odebrání obsahu" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Přidat / Odebrat obsah" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "používá se" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disk" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Podívat se" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Otevřít" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Administrátor" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Program manager" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Host" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Hosté mohou dělat následující:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Zobrazit plán" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Zobrazit obsah vysílání" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "DJ může dělat následující:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Spravovat přidělený obsah vysílání" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Import media souborů" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Vytvořit playlisty, smart bloky a webstreamy" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Spravovat obsah vlastní knihovny" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Zobrazit a spravovat obsah vysílání" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Plán ukazuje" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Spravovat celý obsah knihovny" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Správci mohou provést následující:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Správa předvoleb" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Správa uživatelů" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Správa sledovaných složek" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Odeslat zpětnou vazbu" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Zobrazit stav systému" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Přístup playout historii" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Zobrazit posluchače statistiky" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Zobrazit / skrýt sloupce" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Z {z} do {do}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "rrrr-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Ne" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Po" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Út" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "St" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Čt" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Pá" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "So" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Zavřít" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Hodina" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuta" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Hotovo" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Vyberte soubory" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Přidejte soubory do fronty pro nahrávání a klikněte na tlačítko start." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Přidat soubory." -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Zastavit Nahrávání" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Začít nahrávat" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Přidat soubory" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Nahráno %d / %d souborů" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "Nedostupné" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Soubory přetáhněte zde." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Chybná přípona souboru" -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Chybná velikost souboru." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Chybný součet souborů." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Chyba Init." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "Chyba HTTP." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Chyba zabezpečení." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Obecná chyba. " -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "CHyba IO." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Soubor: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d souborů ve frontě" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Soubor: %f , velikost: %s , max. velikost souboru:% m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Přidané URL může být špatné nebo neexistuje" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Chyba: Soubor je příliš velký: " -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Chyba: Neplatná přípona souboru: " -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Nastavit jako default" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Vytvořit vstup" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Editovat historii nahrávky" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Žádné vysílání" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "Kopírovat %s řádků %s do schránky" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%s náhled tisku %s k vytištění této tabulky použijte funkci tisku ve vašem prohlížeči. Po dokončení stiskněte escape." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Popis" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Povoleno" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Vypnuto" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Prohlížíte si starší verzi %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Nemůžete přidávat skladby do dynamických bloků." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nemáte oprávnění odstranit vybrané %s (s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Můžete pouze přidat skladby do chytrého bloku." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Playlist bez názvu" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Chytrý block bez názvu" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Neznámý Playlist" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Preference aktualizovány." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Nastavení streamu aktualizováno." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "cesta by měla být specifikována" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problém s Liquidsoap ..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Znovu spustit vysílaní %s od %s na %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Vybrat kurzor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Odstranit kurzor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "vysílání neexistuje" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Soubor s nahrávkou neexistuje" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Zobrazit nahraný soubor metadat" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Uživatel byl úspěšně přidán!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Uživatel byl úspěšně aktualizován!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Nastavení úspěšně aktualizováno!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Upravit vysílání" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Webstream bez názvu" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream uložen." -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Neplatná forma hodnot." -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Přístup odepřen" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Zadán neplatný znak " -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Nelze přetáhnout opakujícící se vysílání" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Den musí být zadán" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Nelze přesunout vysílání z minulosti" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Čas musí být zadán" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Nelze přesunout vysílání do minulosti" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Nelze nastavit překrývající se vysílání." - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Musíte počkat 1 hodinu před dalším vysíláním." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Stopa" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Čas začátku" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Čas konce" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Přehráno" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Vyberte kritéria" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Kvalita (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Vzorkovací frekvence (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "hodiny" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minuty" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "položka" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamický" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statický" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generovat obsah playlistu a uložit kritéria" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Promíchat obsah playlistu" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit nemůže být prázdný nebo menší než 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit nemůže být větší než 24 hodin" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Hodnota by měla být celé číslo" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 je max hodnota položky, kterou lze nastavit" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Musíte vybrat kritéria a modifikátor" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Délka' by měla být ve formátu '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Hodnota musí být číslo" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Hodnota by měla být menší než 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Hodnota by měla mít méně znaků než %s" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Hodnota nemůže být prázdná" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC číslo:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Importovaná složka:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Sledované složky:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Neplatný adresář" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Typ opakování:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "týdně" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "každé 2 týdny" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "každé 3 týdny" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "každé 4 týdny" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "měsíčně" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Vyberte dny:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Opakovat:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "den v měsíci" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "den v týdnu" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Datum ukončení:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nekončí?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Datum ukončení musí být po počátečním datumu" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Prosím vyberte den opakování" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Hodnota je požadována a nemůže zůstat prázdná" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%hodnota%' nesedí formát času 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Časová zó" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Opakovat?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Nelze vytvořit vysílání v minulosti" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Datum/čas ukončení nemůže být v minulosti" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Nelze mít dobu trvání < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Nelze nastavit dobu trvání 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Nelze mít dobu trvání delší než 24 hodin" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Uživatelské jméno:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Heslo:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Ověřit heslo:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Jméno:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Příjmení:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobilní telefon:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Typ uživatele:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Přihlašovací jméno není jedinečné." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "Použij %s ověření pravosti:" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Použít ověření uživatele:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Uživatelské jméno" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Uživatelské heslo" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Uživatelské jméno musí být zadáno." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Heslo musí být zadáno." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Nahráno z Line In?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Časové pásmo stanice" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Vysílat znovu?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dny" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Typ opakování:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Datum zahájení:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "týdně" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Zadán neplatný znak " +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "každé 2 týdny" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Hledat uživatele:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "každé 3 týdny" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "každé 4 týdny" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "měsíčně" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Všechna má vysílání:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Vyberte dny:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Opakovat:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "den v měsíci" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "den v týdnu" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Datum ukončení:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Nekončí?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Datum ukončení musí být po počátečním datumu" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Prosím vyberte den opakování" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Barva pozadí:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Barva textu:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Den musí být zadán" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Název:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Čas musí být zadán" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Pořad bez názvu" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Žánr:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Popis:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%hodnota%' nesedí formát času 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Doba trvání:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Časová zó" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Opakovat?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Nelze vytvořit vysílání v minulosti" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Datum/čas ukončení nemůže být v minulosti" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Nelze mít dobu trvání < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Nelze nastavit dobu trvání 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Nelze mít dobu trvání delší než 24 hodin" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Nelze nastavit překrývající se vysílání." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Hledat uživatele:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Uživatelské jméno:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Heslo:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Ověřit heslo:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Jméno:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Příjmení:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobilní telefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Typ uživatele:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Přihlašovací jméno není jedinečné." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Datum zahájení:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Název:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Tvůrce:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Rok:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Označení:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Skladatel:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Nálada:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Autorská práva:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC číslo:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Internetová stránka:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Jazyk:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Čas začátku" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Čas konce" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Časové pásmo uživatelského rozhraní" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Název stanice" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo stanice:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Poznámka: Cokoli většího než 600x600 bude zmenšeno." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Defoltní nastavení doby plynulého přechodu" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Přednastavení Fade In:" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Přednastavení Fade Out:" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Časové pásmo stanice" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Týden začíná" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Nahráno z Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Vysílat znovu?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Obnovit heslo" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Jsou povolena pouze čísla." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Přihlásit" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Heslo" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Potvrďte nové heslo" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Potvrzené heslo neodpovídá vašemu heslu." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Uživatelské jméno" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Obnovit heslo" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "dny" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Povoleno:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Typ streamu:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Typ služby:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanály:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Přípojný bod" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Administrátorské jméno" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Administrátorské heslo" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server nemůže být prázdný." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port nemůže být prázdný." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount nemůže být prázdný s Icecast serverem." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Časové pásmo uživatelského rozhraní" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Právě se přehrává" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Všechna má vysílání:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%hodnota%' je kratší než požadovaných %min% znaků" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%hodnota%' je více než %max% znaků dlouhá" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Vyberte kritéria" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Kvalita (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Hesla se neshodují" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Vzorkovací frekvence (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hodiny" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuty" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "položka" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamický" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statický" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generovat obsah playlistu a uložit kritéria" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Promíchat obsah playlistu" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Promíchat" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit nemůže být prázdný nebo menší než 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit nemůže být větší než 24 hodin" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Hodnota by měla být celé číslo" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 je max hodnota položky, kterou lze nastavit" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Musíte vybrat kritéria a modifikátor" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Délka' by měla být ve formátu '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Hodnota musí být číslo" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Hodnota by měla být menší než 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Hodnota by měla mít méně znaků než %s" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Hodnota nemůže být prázdná" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Metadata Icecast Vorbis" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Označení streamu:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Umělec - Název" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Vysílání - Umělec - Název" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Název stanice - Název vysílání" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Off Air metadata" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Povolit Replay Gain" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Replay Gain Modifikátor" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Rok %s musí být v rozmezí 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s - %s - %s není platné datum" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s : %s : %s není platný čas" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Povoleno:" -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Typ streamu:" -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit frekvence:" -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Typ služby:" -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanály:" -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Jméno" -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Přípojný bod" -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Administrátorské jméno" -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Administrátorské heslo" -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server nemůže být prázdný." -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port nemůže být prázdný." -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount nemůže být prázdný s Icecast serverem." -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Importovaná složka:" -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Sledované složky:" -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Neplatný adresář" -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Hodnota je požadována a nemůže zůstat prázdná" -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname" -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'" -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%hodnota%' je kratší než požadovaných %min% znaků" -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%hodnota%' je více než %max% znaků dlouhá" -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně" -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in a cue out jsou prázné." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Nelze nastavit větší cue in než cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Nelze nastavit delší cue out než je délka souboru." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Nelze nastavit menší cue out než je cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Délka musí být větší než 0 minut" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Délka by měla mít tvar \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL by měla mít tvar \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL by měla mít 512 znaků nebo méně" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Nenalezen žádný MIME typ pro webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Název webstreamu nemůže být prázdný" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Nelze zpracovat XSPF playlist" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Nelze zpracovat PLS playlist" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Nelze zpracovat M3U playlist" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Neplatný webstream - tento vypadá jako stažení souboru." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Neznámý typ streamu: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Znovu odvysílat %s od %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Vyberte zemi" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Nemůže přesunout položky z linkovaných vysílání" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Program, který si prohlížíte, je zastaralý!" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Program který si prohlížíte je zastaralý!" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Program který si prohlížíte je zastaralý! " - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Nemáte povoleno plánovat vysílání %s ." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Nemůžete přidávat soubory do nahrávaného vysílání." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Vysílání %s skončilo a nemůže být nasazeno." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Vysílání %s bylo již dříve aktualizováno!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Nelze naplánovat playlist, který obsahuje chybějící soubory." - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Vybraný soubor neexistuje!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s je již sledován." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s obsahuje vložený sledovaný adresář: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s je vložený do stávajícího sledovaného adresáře: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s není platný adresář." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s je již nastaveno jako aktuální uložiště adresáře nebo ve sledovaném seznamu souborů." - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s je již nastaven jako aktuální adresář úložiště nebo v seznamu sledovaných složek." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s neexistuje v seznamu sledovaných." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Hesla se neshodují" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5354,7 +3908,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5362,7 +3916,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5371,20 +3925,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s Heslo onboveno" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in a cue out jsou prázné." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Nelze nastavit delší cue out než je délka souboru." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Nelze nastavit větší cue in než cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Nelze nastavit menší cue out než je cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s je již sledován." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s obsahuje vložený sledovaný adresář: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s je vložený do stávajícího sledovaného adresáře: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s není platný adresář." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s je již nastaveno jako aktuální uložiště adresáře nebo ve sledovaném seznamu souborů." + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s je již nastaven jako aktuální adresář úložiště nebo v seznamu sledovaných složek." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s neexistuje v seznamu sledovaných." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Vyberte zemi" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Nemůže přesunout položky z linkovaných vysílání" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Program, který si prohlížíte, je zastaralý!" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Program který si prohlížíte je zastaralý!" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Program který si prohlížíte je zastaralý! " + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Nemáte povoleno plánovat vysílání %s ." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Nemůžete přidávat soubory do nahrávaného vysílání." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Vysílání %s skončilo a nemůže být nasazeno." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Vysílání %s bylo již dříve aktualizováno!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Nelze naplánovat playlist, který obsahuje chybějící soubory." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Vybraný soubor neexistuje!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Vysílání může mít max. délku 24 hodin." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5392,144 +4064,237 @@ msgstr "" "Nelze naplánovat překrývající se vysílání.\n" "Poznámka:. Změna velikosti opakujícího se vysílání ovlivňuje všechny opakování tohoto vysílání." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Znovu odvysílat %s od %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Délka musí být větší než 0 minut" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Délka by měla mít tvar \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL by měla mít tvar \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL by měla mít 512 znaků nebo méně" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Nenalezen žádný MIME typ pro webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Název webstreamu nemůže být prázdný" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Nelze zpracovat XSPF playlist" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Nelze zpracovat PLS playlist" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Nelze zpracovat M3U playlist" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Neplatný webstream - tento vypadá jako stažení souboru." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Neznámý typ streamu: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Soubor s nahrávkou neexistuje" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Zobrazit nahraný soubor metadat" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Kalendář" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Uživatelé" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Upravit vysílání" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streamy" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Historie nastavení" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Přístup odepřen" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Statistiky poslechovost" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Nelze přetáhnout opakujícící se vysílání" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Nelze přesunout vysílání z minulosti" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Nelze přesunout vysílání do minulosti" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Musíte počkat 1 hodinu před dalším vysíláním." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Stopa" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Přehráno" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Začínáme" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Návod k obsluze" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Požadované délky bloku nebude dosaženo pokud Airtime nenalezne dostatek unikátních skladeb, které odpovídají vašim kritériím. Povolte tuto možnost, pokud chcete, aby byly skladby přidány do chytrého bloku vícekrát." +#~ msgid " to " +#~ msgstr " do " -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Pokud je Airtime za routerem nebo firewall, budete možná muset nastavit přesměrování portu a tato informace pole budou nesprávná. V tomto případě budete muset ručně aktualizovat pole tak, aby ukazovalo správně host/port/mount, do kterých se Váš DJ potřebuje připojit. Povolené rozpětí je mezi 1024 a 49151." +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s je distribuován pod %3$s" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Pro více informací si prosím přečtěte %s Airtime manuál %s" +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, open radio software pro plánování a řízení vzdálené stanice. " -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Manažeři může dělat následující:" +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Za účelem podpory vaší stanice musí být povolena funkce 'Zaslat Váš názor')." -#~ msgid "Support setting updated." -#~ msgstr "Podpora nastavení aktualizována." +#~ msgid "(Required)" +#~ msgstr "(Požadováno)" -#~ msgid "Support Feedback" -#~ msgstr "Technická podpora" +#~ msgid "(Your radio station website)" +#~ msgstr "(Webová stránka vaší rádiové stanice)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Opište znaky, které vidíte na obrázku níže." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(pouze pro ověřovací účely, nebude zveřejněno)" -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Station Web Site:" -#~ msgstr "Webová stránka stanice:" +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Country:" -#~ msgstr "Stát:" +#~ msgid "About" +#~ msgstr "O aplikaci" -#~ msgid "City:" -#~ msgstr "Město:" +#~ msgid "Add New Field" +#~ msgstr "Přidat nové pole" -#~ msgid "Station Description:" -#~ msgstr "Popis stanice:" +#~ msgid "Add more elements" +#~ msgstr "Přidat elementy" -#~ msgid "Promote my station on %s" -#~ msgstr "Podpořit mou stanici na %s" +#~ msgid "Add this show" +#~ msgstr "Přidat toto vysílání" -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s." +#~ msgid "Additional Options" +#~ msgstr "Dodatečné možnosti" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Musíte souhlasit se zásadami ochrany osobních údajů." - -#~ msgid "Default License:" -#~ msgstr "Výchozí licence:" +#~ msgid "Advanced Search Options" +#~ msgstr "Rozšířené možnosti hledání" #~ msgid "All rights are reserved" #~ msgstr "Všechna práva jsou vyhrazena" -#~ msgid "The work is in the public domain" -#~ msgstr "Práce je ve veřejné doméně" +#~ msgid "Audio Track" +#~ msgstr "Audio stopa" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s." + +#~ msgid "Choose Days:" +#~ msgstr "Vyberte dny:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Vybrat instanci show" + +#~ msgid "Choose folder" +#~ msgstr "Vyberte soubor" + +#~ msgid "City:" +#~ msgstr "Město:" + +#~ msgid "Clear" +#~ msgstr "Vymazat" + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Klikněte na box níže pro podporu vaší stanice na %s." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Obsah v propojených show musí být zařazen před nebo po kterémkoliv, který je vysílaný " + +#~ msgid "Country:" +#~ msgstr "Stát:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Vytvořit soubor přehledu nastavení" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Vytvořit vzor přehledu logů" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons označení" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons nekomerční" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Nezasahujte do díla" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Zachovejte licenci" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons nekomerční" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons nekomerční Nezasahujte do díla" @@ -5537,41 +4302,389 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons nekomerční Zachovejte licenci" -#~ msgid "Register Airtime" -#~ msgstr "Registrovat Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Zachovejte licenci" -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Klikněte na box níže pro podporu vaší stanice na %s." +#~ msgid "Cue In: " +#~ msgstr "Cue in: " -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(pouze pro ověřovací účely, nebude zveřejněno)" +#~ msgid "Cue Out: " +#~ msgstr "Cue out: " -#~ msgid "Show me what I am sending " -#~ msgstr "Zobrazit co posílám " +#~ msgid "Current Import Folder:" +#~ msgstr "Aktuálně importovaný soubor:" -#~ msgid "Terms and Conditions" -#~ msgstr "Pravidla a podmínky" +#~ msgid "Cursor" +#~ msgstr "Kurzor" -#~ msgid "files meet the criteria" -#~ msgstr "soubory splňují kritéria" +#~ msgid "Default Length:" +#~ msgstr "Defaultní délka:" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Za účelem podpory vaší stanice musí být povolena funkce 'Zaslat Váš názor')." +#~ msgid "Default License:" +#~ msgstr "Výchozí licence:" -#~ msgid "Your trial expires in" -#~ msgstr "Váše zkušební období vyprší " +#~ msgid "Disk Space" +#~ msgstr "Velikost disku" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Tato verze bude brzy zastaralá." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamický Smart Block" -#~ msgid "This version is no longer supported." -#~ msgstr "Tato verze již není podporována." +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Kritéria dynamickeho Smart Blocku: " + +#~ msgid "Empty playlist content" +#~ msgstr "Prázdný playlist" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Rozšířit dynamický blok" + +#~ msgid "Expand Static Block" +#~ msgstr "Rozšířit statický blok" + +#~ msgid "Fade in: " +#~ msgstr "Zesílit: " + +#~ msgid "Fade out: " +#~ msgstr "Zeslabit: " + +#~ msgid "File Path:" +#~ msgstr "Cesta souboru:" + +#~ msgid "File Summary" +#~ msgstr "Shrnutí souboru" + +#~ msgid "File Summary Templates" +#~ msgstr "Vzory přehledu souboru" + +#~ msgid "File import in progress..." +#~ msgstr "Probíhá importování souboru ..." + +#~ msgid "Filter History" +#~ msgstr "Filtrovat historii" + +#~ msgid "Find" +#~ msgstr "Najdi" + +#~ msgid "Find Shows" +#~ msgstr "Najít vysílání" + +#~ msgid "First Name" +#~ msgstr "Jméno" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Pro podrobnější nápovědu si přečtěte %suživatelský manuál%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Pro více informací si prosím přečtěte %s Airtime manuál %s" + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Zde můžete vidět jak začít s používáním %s pro automatizované vysílání:" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Pokud je Airtime za routerem nebo firewall, budete možná muset nastavit přesměrování portu a tato informace pole budou nesprávná. V tomto případě budete muset ručně aktualizovat pole tak, aby ukazovalo správně host/port/mount, do kterých se Váš DJ potřebuje připojit. Povolené rozpětí je mezi 1024 a 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC číslo" + +#~ msgid "Last Name" +#~ msgstr "Příjmení" + +#~ msgid "Length:" +#~ msgstr "Délka:" + +#~ msgid "Limit to " +#~ msgstr "Omezit na " + +#~ msgid "Listen" +#~ msgstr "Poslech" + +#~ msgid "Live Stream Input" +#~ msgstr "Vložení Live Streamu" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Přehled logu" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Vzory přehledu logů" + +#~ msgid "Logout" +#~ msgstr "Odhlásit " + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Stránka, kterou hledáte, neexistuje!" + +#~ msgid "Manage Users" +#~ msgstr "Správa uživatelů" + +#~ msgid "Master Source" +#~ msgstr "Hlavní zdroj" + +#~ msgid "New File Summary Template" +#~ msgstr "Nový vzor přehledu souboru" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nový vzor přehledu logů" + +#~ msgid "New User" +#~ msgstr "Nový uživatel" + +#~ msgid "New password" +#~ msgstr "Nové heslo" + +#~ msgid "Next:" +#~ msgstr "Další:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nový vzor přehledu souboru" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Vzory přehledu logů nejsou" + +#~ msgid "No open playlist" +#~ msgstr "Neotevřený playlist" + +#~ msgid "No webstream" +#~ msgstr "Žádný webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Původní délka:" + +#~ msgid "Page not found!" +#~ msgstr "Stránka nebyla nalezena!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Přehrát" + +#~ msgid "Playlist Contents: " +#~ msgstr "Obsah Playlistu: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Prosím zadejte a potvrďte své nové heslo v políčkách níže." #~ msgid "Please upgrade to " #~ msgstr "Prosím aktualizujte na " +#~ msgid "Previous:" +#~ msgstr "Předchozí:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Manažeři může dělat následující:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Podpořit mou stanici na %s" + +#~ msgid "Register Airtime" +#~ msgstr "Registrovat Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Odebrat sledovaný adresář" + +#~ msgid "Repeat Days:" +#~ msgstr "Opakovat dny:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Znovu projít sledovaný adresář (Tato funkce je užitečná, pokud je síť přeplněna a nedojde k synchronizaci s %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Vzorová frekvence:" + +#~ msgid "Save playlist" +#~ msgstr "Uložit playlist" + +#~ msgid "Select stream:" +#~ msgstr "Vyberte stream:" + +#~ msgid "Set" +#~ msgstr "Nastavit" + +#~ msgid "Set Cue In" +#~ msgstr "Nastavit Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Nstavit Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Nastavit defolní šablnu" + +#~ msgid "Share" +#~ msgstr "Sdílet" + +#~ msgid "Show Source" +#~ msgstr "Zobrazit zdroj" + +#~ msgid "Show Summary" +#~ msgstr "Shrnutí show" + +#~ msgid "Show Waveform" +#~ msgstr "UKázat Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Zobrazit co posílám " + +#~ msgid "Shuffle playlist" +#~ msgstr "Promíchat Playlist" + +#~ msgid "Source Streams" +#~ msgstr "Zdrojové Streamy" + +#~ msgid "Static Smart Block" +#~ msgstr "Statický Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Obsah statistického Smart Blocku: " + +#~ msgid "Station Description:" +#~ msgstr "Popis stanice:" + +#~ msgid "Station Web Site:" +#~ msgstr "Webová stránka stanice:" + +#~ msgid "Stop" +#~ msgstr "Zastavit" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Nastavení Streamu" + +#~ msgid "Stream URL:" +#~ msgstr "URL streamu:" + +#~ msgid "Stream URL: " +#~ msgstr "URL streamu: " + +#~ msgid "Style" +#~ msgstr "Styl" + +#~ msgid "Support Feedback" +#~ msgstr "Technická podpora" + +#~ msgid "Support setting updated." +#~ msgstr "Podpora nastavení aktualizována." + +#~ msgid "Terms and Conditions" +#~ msgstr "Pravidla a podmínky" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Požadované délky bloku nebude dosaženo pokud Airtime nenalezne dostatek unikátních skladeb, které odpovídají vašim kritériím. Povolte tuto možnost, pokud chcete, aby byly skladby přidány do chytrého bloku vícekrát." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Následující informace se zobrazí u posluchačů na jejich přehrávačích:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Práce je ve veřejné doméně" + +#~ msgid "This version is no longer supported." +#~ msgstr "Tato verze již není podporována." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Tato verze bude brzy zastaralá." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Chcete-li přehrávat média, budete si muset buď nastavit svůj prohlížeč na nejnovější verzi nebo aktualizovat svůj%sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Skladba:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Opište znaky, které vidíte na obrázku níže." + +#~ msgid "Update Required" +#~ msgstr "Nutná aktualizace" + +#~ msgid "Update show" +#~ msgstr "Aktualizace vysílání" + +#~ msgid "User Type" +#~ msgstr "Typ uživatele" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Vítejte v %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Vítejte v %s demo! Můžete se přihlásit přes uživatelské jméno 'admin' a heslo 'admin'." + +#~ msgid "What" +#~ msgstr "Co" + +#~ msgid "When" +#~ msgstr "Kdy" + +#~ msgid "Who" +#~ msgstr "Kdo" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Nesledujete žádné mediální soubory." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Musíte souhlasit se zásadami ochrany osobních údajů." + +#~ msgid "Your trial expires in" +#~ msgstr "Váše zkušební období vyprší " + +#~ msgid "and" +#~ msgstr "a" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "soubory splňují kritéria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max. hlasitost" + +#~ msgid "mute" +#~ msgstr "vypnout zvuk" + +#~ msgid "next" +#~ msgstr "další" + +#~ msgid "or" +#~ msgstr "nebo" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "přehrát" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "prosím nastavte čas v sekundách '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Obsah v propojených show musí být zařazen před nebo po kterémkoliv, který je vysílaný " +#~ msgid "previous" +#~ msgstr "předchozí" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "zapnout zvuk" diff --git a/legacy/locale/da_DK/LC_MESSAGES/libretime.po b/legacy/locale/da_DK/LC_MESSAGES/libretime.po deleted file mode 100644 index 8c2ae8265..000000000 --- a/legacy/locale/da_DK/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5459 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/sourcefabric/airtime/language/da_DK/)\n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/de_AT/LC_MESSAGES/libretime.po b/legacy/locale/de_AT/LC_MESSAGES/libretime.po index d650e4697..1625c2351 100644 --- a/legacy/locale/de_AT/LC_MESSAGES/libretime.po +++ b/legacy/locale/de_AT/LC_MESSAGES/libretime.po @@ -1,2501 +1,1610 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # hoerich , 2014 # Sourcefabric , 2013 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: German (Austria) (http://www.transifex.com/sourcefabric/airtime/language/de_AT/)\n" +"Language-Team: German (Austria)\n" "Language: de_AT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Anmeldung" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen." -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Neues Passwort" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Bitte in den nachstehenden Feldern das neue Passwort eingeben und bestätigen." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Playout Verlauf" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Protokoll" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Dateiübersicht" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Sendungsübersicht" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Verwalte Medienverzeichnisse" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Stream Einstellungen" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Speichern" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Erforderlich)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Erweiterte Optionen" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Die Hörer werden folgende Information auf dem Display ihres Medien-Players sehen:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Webseite ihrer Radiostation)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "oder" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "and" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " bis " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Folge wählen" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Keine Sendung" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Finden" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Verzeichnis wählen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Wählen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Aktuelles Import-Verzeichnis:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Hinzufügen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s ist kein gültiges Datum" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Überwachten Ordner entfernen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Sie überwachen keine Medienverzeichnisse." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Tag wählen:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Entfernen" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Wiederholungstage:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Sendungen suchen" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filter Verlauf" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Show Quelle" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master Quelle" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s-%s-%s ist kein gültiger Zeitpunkt." + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Benutzer verwalten" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Neuer Benutzer" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "ID" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Benutzername" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Vorname" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Nachname" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Benutzertyp" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Statischen Block erweitern" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Dynamischen Block erweitern" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Beschreibung:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Dauer:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Shuffle Playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Shuffle" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist Crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Playlist leeren" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Leeren" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade Out:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Abbrechen" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Playlist speichern" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Keine Playlist geöffnet" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Wellenform anzeigen" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade In:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Original Dauer:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "In Verwendung" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Alle" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Erweiterte Suchoptionen" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Beschreibung" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Standard Dauer:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Kein Webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Schließen" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Name" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Interpret" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Sprache" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Datei-Import in Bearbeitung..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Titel" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Interpret:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Titelnummer:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Dauer:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Samplerate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Stimmung:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Jahr:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Label:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Komponist:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Dirigent:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC Number:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Webseite:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Sprache:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Dateipfad:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamischer Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statischer Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Titel" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Playlist Inhalt:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Statischer Smart Block Inhalt:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dynamische Smart Block Kriterien:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Begrenzt auf " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Speicherplatz" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "Zurück" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Kalender" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "Abspielen" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "Pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "Nächster" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "Stopp" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "Stumm schalten" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "Laut schalten" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "Maximale Lautstärke" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Aktualisierung erforderlich" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Um diese Datei abspielen zu können muß entweder der Browser oder das %sFlash Plugin%s aktualisiert werden." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Erstelle Dateiübersichtsvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Erstelle Protokollvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Weitere Elemente hinzufügen" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Neues Feld hinzufügen" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Standardvorlage festlegen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Protokollvorlagen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Neue Protokollvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Keine Protokollvorlagen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Standard festlegen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Dateiübersichtsvorlagen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Neue Dateiübersichtsvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Keine Dateiübersichtsvorlagen" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Über" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Für weitere Hilfe bitte das %sBenutzerhandbuch%s lesen." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live Stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Teilen" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Stream wählen:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Sendung hinzufügen" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Sendung aktualisieren" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Was" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Wann" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Live-Stream Eingang" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Wer" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Style" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Beginn" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Titel" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Dauer" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Vorher:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Danach:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Stream-Quellen" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Hören" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Abmelden" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlisten" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blöcke" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Benutzer" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Playout Verlauf" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Verlaufsvorlagen" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Hörerstatistiken" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Hilfe" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Kurzanleitung" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Benutzerhandbuch" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Seite nicht gefunden!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Scheinbar existiert die Seite die sie suchen nicht!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Abspielen" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stopp" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Cue In setzen" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Cue Out setzen" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Mit diesem Eingang ist keine Quelle verbunden." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Unbenannter Webstream" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream gespeichert" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Ungültiger Eingabewert" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Benutzer erfolgreich hinzugefügt!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Benutzer erfolgreich aktualisiert!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Einstellungen erfolgreich aktualisiert!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Vorschau" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Cursor wählen" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Cursor entfernen" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Löschen" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "Sendung existiert nicht." - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Einstellungen aktualisiert" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Stream-Einstellungen aktualisiert." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "Pfad muß angegeben werden" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem mit Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nicht gefunden" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Etwas ist falsch gelaufen." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Zu Playlist hinzufügen" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Hinzufügen zu Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Herunterladen" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Playlist duplizieren" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Keine Aktion verfügbar" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopie von %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Sie haben nicht die erforderliche Berechtigung sich mit dieser Quelle zu verbinden." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Fehlerhafte Anfrage. Kein passender 'Mode'-Parameter." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Fehlerhafte Anfrage. 'Mode'-Parameter ist ungültig." -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu trennen." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Mit diesem Eingang ist keine Quelle verbunden." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Sie haben nicht die erforderliche Berechtigung die Quelle zu wechseln." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Sie betrachten eine ältere Version von %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. " +msgid "%s not found" +msgstr "%s nicht gefunden" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Sie können einem Smart Block nur Titel hinzufügen." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Etwas ist falsch gelaufen." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Vorschau" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Unbenannte Playlist" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Zu Playlist hinzufügen" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Unbenannter Smart Block" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Hinzufügen zu Smart Block" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Unbenannte Playlist" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Löschen" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Herunterladen" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Playlist duplizieren" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Keine Aktion verfügbar" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopie von %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Bitte versichern Sie sich, dass Benutzer/Passwort unter System->Streams korrekt eingetragen ist." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Aufzeichnung:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Master Stream" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Live Stream" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Nichts geplant" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Aktuelle Sendung:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Aktuell" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Sie verwenden die aktuellste Version" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Neue Version verfügbar:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Zu aktueller Playlist hinzufügen" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Zu aktuellem Smart Block hinzufügen" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Füge 1 Objekt hinzu" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Füge %s Objekte hinzu" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)" -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Bitte wählen Sie eine Cursor-Position auf der Zeitleiste." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Hinzufügen" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Bearbeiten" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Entfernen" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Metadaten bearbeiten" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Zu gewählter Sendung hinzufügen" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Auswahl" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Ganze Seite markieren" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Ganze Seite nicht markieren" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Keines Markieren" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Wollen sie die gewählten Objekte wirklich löschen?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Geplant" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Titel" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Interpret" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Bitrate" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Komponist" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Dirigent" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Encoded By" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Sprache" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Zuletzt geändert" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Zuletzt gespielt" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Dauer" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Stimmung" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Besitzer" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Samplerate" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Titelnummer" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Hochgeladen" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Webseite" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Jahr" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "wird geladen..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Alle" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Dateien" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlisten" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blöcke" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web Streams" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Unbekannter Typ:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Wollen sie das gewählte Objekt wirklich löschen?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Hochladen wird durchgeführt..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Daten werden vom Server abgerufen..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Fehler Code:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Fehlermeldung:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Der eingegeben Wert muß eine positive Zahl sein" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Der eingegebene Wert muß eine Zahl sein" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Sie laden im Augenblich Datein hoch. %sDas Wechseln der Seite würde diesen Prozess abbrechen. %sSind sie sicher, daß sie die Seite verlassen möchten?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Open Media Builder" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "Bitte geben sie eine Zeit an '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Bei einem Dynamischen Block ist keine Vorschau möglich" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Beschränkung auf:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Playlist gespeichert" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Playlist durchgemischt" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "" "Airtime kann den Status dieser Datei nicht bestimmen.\n" "Das kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Hörerzahl %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "In einer Woche erinnern" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Niemals erinnern" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Ja, Airtime helfen" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Ein Bild muß jpg, jpeg, png, oder gif sein." -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "" "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\n" "Dadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "" "Ein Dynamischer Smart Block speichert nur die Kriterien.\n" "Dabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann in der Bibliothek nicht eingesehen oder verändert werden." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart Block durchgemischt" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Smart Block erstellt und Kriterien gespeichert" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Smart Block gespeichert" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "In Bearbeitung..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Wähle Modifikator" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "enthält" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "enthält nicht" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "ist" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "ist nicht" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "beginnt mit" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "endet mit" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "ist größer als" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "ist kleiner als" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "ist im Bereich" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Erstellen" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Wähle Storage-Verzeichnis" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Wähle zu überwachendes Verzeichnis" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2503,2858 +1612,2304 @@ msgstr "" "Wollen sie wirklich das Storage-Verzeichnis ändern?\n" "Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Verwalte Medienverzeichnisse" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Wollen sie den überwachten Ordner wirklich entfernen?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Dieser Pfad ist derzeit nicht erreichbar." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Manche Stream-Typen erfordern zusätzlich Konfiguration. Details zur Aktivierung von %sAAC+ Support%s oder %sOpus Support%s sind bereitgestellt." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Mit Streaming-Server verbunden" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Der Stream ist deaktiviert" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Erhalte Information vom Server..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden." -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "" "Diese Option aktiviert Metadaten für Ogg-Streams.\n" "(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\n" "VLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer erwarten keinen Support für diese Audioplayer, können sie diese Option gerne aktivieren." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Unterbrechung der Leitung automatisch abzuschalten." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Aktivieren sie dieses Kästchen, um die Master-/Show-Quelle bei Herstellung einer Leitung automatisch anzuschalten." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Falls der Icecast-Server den Benutzernamen 'source' erwartet, kann dieses Feld leer gelassen werden." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Falls der Live-Streaming-Client keinen Benutzernamen verlangt, sollte in dieses Feld 'source' eingetragen werden." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Das sind Admin Benutzername und Passwort, für die Hörerstatistiken von Icecast/SHOUTcast." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird." -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Kein Ergebnis gefunden" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Diese Einstellung folgt den Sicherheitsvorlagen für Shows: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Hiermit aktiviert man eine benutzerdefinierte Authentifizierung, welche nur für diese Sendung funktionieren wird." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Die Sendungsinstanz existiert nicht mehr!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Warnung: Sendungen können nicht erneut verknüpft werden." -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant." -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Sendung" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Sendung ist leer" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Daten werden vom Server abgerufen..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Diese Sendung hat keinen geplanten Inhalt." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Diese Sendung ist noch nicht vollständig mit Inhalt befüllt." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Januar" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Februar" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "März" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "April" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Mai" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Juni" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Juli" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "August" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "September" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Oktober" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "November" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Dezember" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Jan" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Feb" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mär" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Apr" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Mai" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Jul" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Aug" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Sep" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Okt" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dez" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Sonntag" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Montag" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Dienstag" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Mittwoch" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Donnerstag" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Freitag" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Samstag" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "SO" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "MO" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "DI" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "MI" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "DO" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "FR" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "SA" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Wenn der Inhalt einer Sendung länger ist als die Sendung im Kalender geplant ist, wird das Ende durch eine nachfolgende Sendung abgeschnitten." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Aktuelle Sendung abbrechen?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Aufzeichnung der aktuellen Sendung stoppen?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "OK" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Sendungsinhalt" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Gesamten Inhalt entfernen?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Gewählte Objekte löschen?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Beginn" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Ende" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Dauer" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Sendung leer" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Aufzeichnen von Line-In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Titelvorschau" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Es ist keine Planung außerhalb einer Sendung möglich." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Verschiebe 1 Objekt" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Verschiebe %s Objekte" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Speichern" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Abbrechen" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Fade Editor" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Cue Editor" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Wellenform-Funktionen ist in Browsern möglich, welche die Web Audio API unterstützen" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Alle markieren" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Nichts Markieren" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Gewähltes Objekt entfernen" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Springe zu aktuellem Titel" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Aktuelle Sendung abbrechen" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Inhalt hinzufügen / entfernen" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "In Verwendung" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disk" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Suchen in" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Öffnen" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Admin" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Programm Manager" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Gast" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Gäste können folgendes tun:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Kalender betrachten" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Sendungsinhalt betrachten" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "DJ's können folgendes tun:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Verwalten zugewiesener Sendungsinhalte" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Mediendateien importieren" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Verwalten eigener Bibliotheksinhalte" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Sendungsinhalte betrachten und verwalten" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Sendungen festlegen" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Verwalten der gesamten Bibliothek" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Admins können folgendes tun:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Einstellungen verwalten" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Benutzer verwalten" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Verwalten überwachter Ordner" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Support Feedback senden" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "System Status betrachten" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Zugriff auf Playout Verlauf" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Hörerstatistiken betrachten" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Spalten zeigen / verbergen" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Von {from} bis {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "So" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Mo" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Di" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Mi" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Do" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Fr" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Sa" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Schließen" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Stunde" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minute" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Fertig" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Dateien wählen" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Fügen sie zum Hochladen Dateien der Warteschlange hinzu und drücken Sie auf Start." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Dateien hinzufügen" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Hochladen stoppen" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Hochladen starten" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Dateien hinzufügen" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "%d/%d Dateien hochgeladen" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "Nicht Verfügbar" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Dateien hierher ziehen" -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Dateierweiterungsfehler" -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Dateigrößenfehler" -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Dateianzahlfehler" -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Init Fehler" -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "HTTP-Fehler" -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Sicherheitsfehler" -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Allgemeiner Fehler" -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "IO-Fehler" -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Datei: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d Dateien in der Warteschlange" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Upload-URL scheint falsch zu sein oder existiert nicht" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Fehler: Datei zu groß" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Fehler: Ungültige Dateierweiterung:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Standard festlegen" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Eintrag erstellen" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Verlaufsprotokoll bearbeiten" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Keine Sendung" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s Reihen%s in die Zwischenablage kopiert" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sPrint view%sBitte verwenden Sie zum Ausdrucken dieser Tabelle die Browser-interne Druckfunktion. Drücken Sie die Escape-Taste nach Fertigstellung." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Beschreibung" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Aktiviert" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Deaktiviert" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Sie betrachten eine ältere Version von %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. " + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Sie können einem Smart Block nur Titel hinzufügen." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Unbenannte Playlist" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Unbenannter Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Unbenannte Playlist" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Einstellungen aktualisiert" + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Stream-Einstellungen aktualisiert." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "Pfad muß angegeben werden" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem mit Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Wiederholung der Sendung % s vom %s um %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Cursor wählen" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Cursor entfernen" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "Sendung existiert nicht." + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Aufeichnung existiert nicht" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Metadaten der aufgezeichneten Datei ansehen" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Benutzer erfolgreich hinzugefügt!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Benutzer erfolgreich aktualisiert!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Einstellungen erfolgreich aktualisiert!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Sendung bearbeiten" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Unbenannter Webstream" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream gespeichert" -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Ungültiger Eingabewert" -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Ungültiges Zeichen eingeben" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Tag muß angegeben werden" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Zeit muß angegeben werden" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Sendungen können nicht überlappend geplant werden." - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert." - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Titel" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Beginn" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Ende" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Abgespielt" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Kriterien wählen" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bitrate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (KHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "Stunden" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "Minuten" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "Objekte" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamisch" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statisch" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Playlist-Inhalt erstellen und Kriterien speichern" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Shuffle Playlist-Inhalt (Durchmischen)" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein." - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Beschränkung kann nicht größer als 24 Stunden sein" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Der Wert muß eine ganze Zahl sein." - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Die Anzahl der Objekte ist auf 500 beschränkt." - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Sie müssen Kriterium und Modifikator bestimmen" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Der eingegebene Wert muß aus Ziffern bestehen" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Wert kann nicht leer sein" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Nummer:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Verzeichnis:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Überwachte Verzeichnisse:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Kein gültiges Verzeichnis" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Verknüpfen:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Wiederholungstyp:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "Wöchentlich" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "jede Zweite Woche" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "jede Dritte Woche" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "jede Vierte Woche" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "Monatlich" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Tage wählen:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Wiederholung am:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "Tag des Monats" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "Tag der Woche" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Zeitpunkt Ende:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Kein Enddatum?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Enddatum muß nach Startdatum liegen." - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Bitte Tag zum Wiederholen wählen" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Wert erforderlich. Feld darf nicht leer sein." - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' ist nicht im Format 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Zeitzone:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Wiederholungen?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen." - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Benutzername:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Passwort:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Passwort bestätigen:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Vorname:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nachname:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-Mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobiltelefon:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Benutzertyp:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Benutzername ist nicht einmalig." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Benutzerdefinierte Authentifizierung:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Benutzerdefinierter Benutzername" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Benutzerdefiniertes Passwort" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Das Feld Benutzername darf nicht leer sein." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Das Feld Passwort darf nicht leer sein." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Aufzeichnen von Line-In?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Zeitzone Radiostation" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Wiederholen?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "Tage" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Verknüpfen:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Wiederholungstyp:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Zeitpunkt Start:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "Wöchentlich" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Ungültiges Zeichen eingeben" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "jede Zweite Woche" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Benutzer suchen:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "jede Dritte Woche" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "jede Vierte Woche" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "Monatlich" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Alle meine Sendungen:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Tage wählen:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Wiederholung am:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "Tag des Monats" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Tag der Woche" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Zeitpunkt Ende:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Kein Enddatum?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Enddatum muß nach Startdatum liegen." + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Bitte Tag zum Wiederholen wählen" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Hintergrundfarbe:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Textfarbe:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Tag muß angegeben werden" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Zeit muß angegeben werden" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Unbenannte Sendung" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Beschreibung:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' ist nicht im Format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Dauer:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Zeitzone:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Wiederholungen?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Eine Sendung kann nicht für einen bereits vergangenen Zeitpunkt geplant werden" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen." + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Sendungen können nicht überlappend geplant werden." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Benutzer suchen:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Benutzername:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Passwort:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Passwort bestätigen:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Vorname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Nachname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-Mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobiltelefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Benutzertyp:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Benutzername ist nicht einmalig." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Zeitpunkt Start:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titel" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Interpret:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Jahr:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Komponist:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Stimmung:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Nummer:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Webseite:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Sprache:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Beginn" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Ende" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Zeitzone Interface" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Sendername" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Sender Logo:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Standarddauer Crossfade (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Standard Fade In (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Standard Fade Out (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Zeitzone Radiostation" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Woche startet mit " -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Aufzeichnen von Line-In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Wiederholen?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Passwort zurücksetzen" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Es sind nur Zahlen erlaubt" -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Anmeldung" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Passwort" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Neues Passwort bestätigen" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Passwortbestätigung stimmt nicht mit Passwort überein" -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Benutzername" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "Tage" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Aktiviert:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Typ:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Typ:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanäle:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Benutzer" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Passwort" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server darf nicht leer sein." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port darf nicht leer sein." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Zeitzone Interface" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Jetzt" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Alle meine Sendungen:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' ist kürzer als %min% Zeichen lang" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' ist mehr als %max% Zeichen lang" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Kriterien wählen" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bitrate (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwörter stimmen nicht überein" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (KHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "Stunden" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "Minuten" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "Objekte" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamisch" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statisch" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Playlist-Inhalt erstellen und Kriterien speichern" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Shuffle Playlist-Inhalt (Durchmischen)" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein." + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Beschränkung kann nicht größer als 24 Stunden sein" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Der Wert muß eine ganze Zahl sein." + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "Die Anzahl der Objekte ist auf 500 beschränkt." + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Sie müssen Kriterium und Modifikator bestimmen" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Der eingegebene Wert muß aus Ziffern bestehen" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Wert kann nicht leer sein" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis Metadata" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Streambezeichnung:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Artist - Titel" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Sendung - Interpret - Titel" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Radiostation - Sendung" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Off Air Metadata" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Replay Gain aktivieren" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Replay Gain Modifikator" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Das Jahr %s muß innerhalb des Bereichs von 1753 - 9999 liegen." - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s ist kein gültiges Datum" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s-%s-%s ist kein gültiger Zeitpunkt." - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Aktiviert:" -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Stream Typ:" -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bitrate:" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Service Typ:" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanäle:" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Name" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Mount Point" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin Benutzer" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Admin Passwort" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server darf nicht leer sein." -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port darf nicht leer sein." -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Verzeichnis:" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Überwachte Verzeichnisse:" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Kein gültiges Verzeichnis" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Wert erforderlich. Feld darf nicht leer sein." -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' ist kürzer als %min% Zeichen lang" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' ist mehr als %max% Zeichen lang" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue In und Cue Out sind Null." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Cue In darf nicht größer als Cue Out sein." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Cue In darf nicht größer als die Gesamtdauer der Datei sein." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Cue Out darf nicht kleiner als Cue In sein." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Dauer muß länger als 0 Minuten sein." - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Dauer im Format \"00h 00m\" eingeben." - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL im Format \"http://domain\" eingeben." - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL darf aus höchstens 512 Zeichen bestehen." - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "XSPF-Playlist konnte nicht aufgeschlüsselt werden." - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "PLS-Playlist konnte nicht aufgeschlüsselt werden." - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "M3U-Playlist konnte nicht aufgeschlüsselt werden." - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unbekannter Stream-Typ: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Wiederholung von %s am %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Land wählen" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Objekte aus einer verknüpften Sendung können nicht verschoben werden." - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell." - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Die Sendung %s ist beendet und kann daher nicht festgelegt werden." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Die Sendung %s wurde bereits aktualisiert." - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Eine der gewählten Dateien existiert nicht!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s wird bereits überwacht." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s ist kein gültiges Verzeichnis." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwörter stimmen nicht überein" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5362,7 +3917,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5370,7 +3925,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5379,20 +3934,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue In und Cue Out sind Null." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Cue In darf nicht größer als die Gesamtdauer der Datei sein." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Cue In darf nicht größer als Cue Out sein." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Cue Out darf nicht kleiner als Cue In sein." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s wird bereits überwacht." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s ist kein gültiges Verzeichnis." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Land wählen" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Objekte aus einer verknüpften Sendung können nicht verschoben werden." + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Kalender falsch eingepasst)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Objekt falsch eingepasst)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell." + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Die Sendung %s ist beendet und kann daher nicht festgelegt werden." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Die Sendung %s wurde bereits aktualisiert." + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Eine der gewählten Dateien existiert nicht!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5400,142 +4073,223 @@ msgstr "" "Sendungen können nicht überlappend geplant werden.\n" "Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Wiederholung von %s am %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Dauer muß länger als 0 Minuten sein." + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Dauer im Format \"00h 00m\" eingeben." + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL im Format \"http://domain\" eingeben." + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL darf aus höchstens 512 Zeichen bestehen." + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "XSPF-Playlist konnte nicht aufgeschlüsselt werden." + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "PLS-Playlist konnte nicht aufgeschlüsselt werden." + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "M3U-Playlist konnte nicht aufgeschlüsselt werden." + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unbekannter Stream-Typ: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Aufeichnung existiert nicht" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Metadaten der aufgezeichneten Datei ansehen" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Benutzer" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Sendung bearbeiten" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Verlaufsvorlagen" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Zugriff verweigert" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Hörerstatistiken" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert." + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Titel" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Abgespielt" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Kurzanleitung" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Benutzerhandbuch" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "" -#~ "Wenn Airtime nicht genug einzigartige Titel findet, kann die gewünschte Dauer des Smart Blocks nicht erreicht werden.\n" -#~ "Aktivieren sie diese Option um das mehrfache Hinzufügen von Titel zum Smart Block zu erlauben." +#~ msgid " to " +#~ msgstr " bis " -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "" -#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" -#~ "Der Wert sollte so geändert werden, daß host/port/mount den Zugangsdaten der DJ's entspricht. Der erlaubte Bereich liegt zwischen 1024 und 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" +#~ msgid "(Required)" +#~ msgstr "(Erforderlich)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Programm Manager können folgendes tun:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Webseite ihrer Radiostation)" -#~ msgid "Support setting updated." -#~ msgstr "Support-Einstellungen aktualisiert." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "About" +#~ msgstr "Über" -#~ msgid "Station Web Site:" -#~ msgstr "Sender-Webseite:" +#~ msgid "Add New Field" +#~ msgstr "Neues Feld hinzufügen" -#~ msgid "Country:" -#~ msgstr "Land:" +#~ msgid "Add more elements" +#~ msgstr "Weitere Elemente hinzufügen" -#~ msgid "City:" -#~ msgstr "Stadt:" +#~ msgid "Add this show" +#~ msgstr "Sendung hinzufügen" -#~ msgid "Station Description:" -#~ msgstr "Sender Beschreibung:" +#~ msgid "Additional Options" +#~ msgstr "Erweiterte Optionen" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." - -#~ msgid "Default License:" -#~ msgstr "Standard Lizenz:" +#~ msgid "Advanced Search Options" +#~ msgstr "Erweiterte Suchoptionen" #~ msgid "All rights are reserved" #~ msgstr "Alle Rechte vorbehalten" -#~ msgid "The work is in the public domain" -#~ msgstr "Das Werk ist in der öffentlichen Domäne" +#~ msgid "Audio Track" +#~ msgstr "Titel" + +#~ msgid "Choose Days:" +#~ msgstr "Tag wählen:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Folge wählen" + +#~ msgid "Choose folder" +#~ msgstr "Verzeichnis wählen" + +#~ msgid "City:" +#~ msgstr "Stadt:" + +#~ msgid "Clear" +#~ msgstr "Leeren" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Eine verknüpfte Sendung kann nicht befüllt werden, während eine ihrer Instanzen ausgestrahlt wird." + +#~ msgid "Country:" +#~ msgstr "Land:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Erstelle Dateiübersichtsvorlage" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Erstelle Protokollvorlage" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Zuordnung" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Zuordnung Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Zuordnung No Derivative Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Zuordnung Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Zuordnung Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Zuordnung Noncommercial Non Derivate Works" @@ -5543,38 +4297,374 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Zuordnung Noncommercial Share Alike" -#~ msgid "Register Airtime" -#~ msgstr "Airtime registrieren" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Zuordnung Share Alike" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" +#~ msgid "Cue In: " +#~ msgstr "Cue In:" -#~ msgid "Show me what I am sending " -#~ msgstr "Zeige mir was ich sende" +#~ msgid "Cue Out: " +#~ msgstr "Cue Out:" -#~ msgid "Terms and Conditions" -#~ msgstr "Geschäftsbedingungen und Rahmenverhältnisse" +#~ msgid "Current Import Folder:" +#~ msgstr "Aktuelles Import-Verzeichnis:" -#~ msgid "files meet the criteria" -#~ msgstr "Dateien entsprechen den Kriterien" +#~ msgid "Cursor" +#~ msgstr "Cursor" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" +#~ msgid "Default Length:" +#~ msgstr "Standard Dauer:" -#~ msgid "Your trial expires in" -#~ msgstr "Die Probelaufzeit läuft ab in" +#~ msgid "Default License:" +#~ msgstr "Standard Lizenz:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Diese Version wird in Kürze veraltet sein." +#~ msgid "Disk Space" +#~ msgstr "Speicherplatz" -#~ msgid "This version is no longer supported." -#~ msgstr "Diese Version wird technisch nicht mehr unterstützt." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamischer Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamische Smart Block Kriterien:" + +#~ msgid "Empty playlist content" +#~ msgstr "Playlist leeren" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dynamischen Block erweitern" + +#~ msgid "Expand Static Block" +#~ msgstr "Statischen Block erweitern" + +#~ msgid "Fade in: " +#~ msgstr "Fade In:" + +#~ msgid "Fade out: " +#~ msgstr "Fade Out:" + +#~ msgid "File Path:" +#~ msgstr "Dateipfad:" + +#~ msgid "File Summary" +#~ msgstr "Dateiübersicht" + +#~ msgid "File Summary Templates" +#~ msgstr "Dateiübersichtsvorlagen" + +#~ msgid "File import in progress..." +#~ msgstr "Datei-Import in Bearbeitung..." + +#~ msgid "Filter History" +#~ msgstr "Filter Verlauf" + +#~ msgid "Find" +#~ msgstr "Finden" + +#~ msgid "Find Shows" +#~ msgstr "Sendungen suchen" + +#~ msgid "First Name" +#~ msgstr "Vorname" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Für weitere Hilfe bitte das %sBenutzerhandbuch%s lesen." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "" +#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" +#~ "Der Wert sollte so geändert werden, daß host/port/mount den Zugangsdaten der DJ's entspricht. Der erlaubte Bereich liegt zwischen 1024 und 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC Number:" + +#~ msgid "Last Name" +#~ msgstr "Nachname" + +#~ msgid "Length:" +#~ msgstr "Dauer:" + +#~ msgid "Limit to " +#~ msgstr "Begrenzt auf " + +#~ msgid "Listen" +#~ msgstr "Hören" + +#~ msgid "Live Stream Input" +#~ msgstr "Live-Stream Eingang" + +#~ msgid "Live stream" +#~ msgstr "Live Stream" + +#~ msgid "Log Sheet" +#~ msgstr "Protokoll" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Protokollvorlagen" + +#~ msgid "Logout" +#~ msgstr "Abmelden" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Scheinbar existiert die Seite die sie suchen nicht!" + +#~ msgid "Manage Users" +#~ msgstr "Benutzer verwalten" + +#~ msgid "Master Source" +#~ msgstr "Master Quelle" + +#~ msgid "New File Summary Template" +#~ msgstr "Neue Dateiübersichtsvorlage" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Neue Protokollvorlage" + +#~ msgid "New User" +#~ msgstr "Neuer Benutzer" + +#~ msgid "New password" +#~ msgstr "Neues Passwort" + +#~ msgid "Next:" +#~ msgstr "Danach:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Keine Dateiübersichtsvorlagen" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Keine Protokollvorlagen" + +#~ msgid "No open playlist" +#~ msgstr "Keine Playlist geöffnet" + +#~ msgid "No webstream" +#~ msgstr "Kein Webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Original Dauer:" + +#~ msgid "Page not found!" +#~ msgstr "Seite nicht gefunden!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Abspielen" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Inhalt:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist Crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Bitte in den nachstehenden Feldern das neue Passwort eingeben und bestätigen." #~ msgid "Please upgrade to " #~ msgstr "Bitte aktualisieren sie auf " +#~ msgid "Previous:" +#~ msgstr "Vorher:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Programm Manager können folgendes tun:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime registrieren" + +#~ msgid "Remove watched directory" +#~ msgstr "Überwachten Ordner entfernen" + +#~ msgid "Repeat Days:" +#~ msgstr "Wiederholungstage:" + +#~ msgid "Sample Rate:" +#~ msgstr "Samplerate:" + +#~ msgid "Save playlist" +#~ msgstr "Playlist speichern" + +#~ msgid "Select stream:" +#~ msgstr "Stream wählen:" + +#~ msgid "Set" +#~ msgstr "Wählen" + +#~ msgid "Set Cue In" +#~ msgstr "Cue In setzen" + +#~ msgid "Set Cue Out" +#~ msgstr "Cue Out setzen" + +#~ msgid "Set Default Template" +#~ msgstr "Standardvorlage festlegen" + +#~ msgid "Share" +#~ msgstr "Teilen" + +#~ msgid "Show Source" +#~ msgstr "Show Quelle" + +#~ msgid "Show Summary" +#~ msgstr "Sendungsübersicht" + +#~ msgid "Show Waveform" +#~ msgstr "Wellenform anzeigen" + +#~ msgid "Show me what I am sending " +#~ msgstr "Zeige mir was ich sende" + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle Playlist" + +#~ msgid "Source Streams" +#~ msgstr "Stream-Quellen" + +#~ msgid "Static Smart Block" +#~ msgstr "Statischer Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statischer Smart Block Inhalt:" + +#~ msgid "Station Description:" +#~ msgstr "Sender Beschreibung:" + +#~ msgid "Station Web Site:" +#~ msgstr "Sender-Webseite:" + +#~ msgid "Stop" +#~ msgstr "Stopp" + +#~ msgid "Stream " +#~ msgstr "Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Stream Einstellungen" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL:" + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support-Einstellungen aktualisiert." + +#~ msgid "Terms and Conditions" +#~ msgstr "Geschäftsbedingungen und Rahmenverhältnisse" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "" +#~ "Wenn Airtime nicht genug einzigartige Titel findet, kann die gewünschte Dauer des Smart Blocks nicht erreicht werden.\n" +#~ "Aktivieren sie diese Option um das mehrfache Hinzufügen von Titel zum Smart Block zu erlauben." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Die Hörer werden folgende Information auf dem Display ihres Medien-Players sehen:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Das Werk ist in der öffentlichen Domäne" + +#~ msgid "This version is no longer supported." +#~ msgstr "Diese Version wird technisch nicht mehr unterstützt." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Diese Version wird in Kürze veraltet sein." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Um diese Datei abspielen zu können muß entweder der Browser oder das %sFlash Plugin%s aktualisiert werden." + +#~ msgid "Track:" +#~ msgstr "Titelnummer:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind." + +#~ msgid "Update Required" +#~ msgstr "Aktualisierung erforderlich" + +#~ msgid "Update show" +#~ msgstr "Sendung aktualisieren" + +#~ msgid "User Type" +#~ msgstr "Benutzertyp" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Was" + +#~ msgid "When" +#~ msgstr "Wann" + +#~ msgid "Who" +#~ msgstr "Wer" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Sie überwachen keine Medienverzeichnisse." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." + +#~ msgid "Your trial expires in" +#~ msgstr "Die Probelaufzeit läuft ab in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "Dateien entsprechen den Kriterien" + +#~ msgid "id" +#~ msgstr "ID" + +#~ msgid "max volume" +#~ msgstr "Maximale Lautstärke" + +#~ msgid "mute" +#~ msgstr "Stumm schalten" + +#~ msgid "next" +#~ msgstr "Nächster" + +#~ msgid "or" +#~ msgstr "oder" + +#~ msgid "pause" +#~ msgstr "Pause" + +#~ msgid "play" +#~ msgstr "Abspielen" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "Bitte geben sie eine Zeit in Sekunden ein '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Eine verknüpfte Sendung kann nicht befüllt werden, während eine ihrer Instanzen ausgestrahlt wird." +#~ msgid "previous" +#~ msgstr "Zurück" + +#~ msgid "stop" +#~ msgstr "Stopp" + +#~ msgid "unmute" +#~ msgstr "Laut schalten" diff --git a/legacy/locale/de_DE/LC_MESSAGES/libretime.po b/legacy/locale/de_DE/LC_MESSAGES/libretime.po index 9ee358783..40b0687d5 100644 --- a/legacy/locale/de_DE/LC_MESSAGES/libretime.po +++ b/legacy/locale/de_DE/LC_MESSAGES/libretime.po @@ -1,6 +1,7 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Daniel James , 2014 @@ -8,2498 +9,1605 @@ # hoerich , 2014 # Sourcefabric , 2013 # Lucas Bickel , 2017. #zanata +# msgid "" msgstr "" -"Project-Id-Version: Airtime 2.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2017-03-22 07:49-0400\n" "Last-Translator: Lucas Bickel \n" -"Language-Team: German (Germany) (http://www.transifex.com/sourcefabric/airtime/language/de_DE/)\n" -"Language: de-DE\n" +"Language-Team: German (Germany)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Zanata 3.9.6\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Anmeldung" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Neues Passwort" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Bitte geben sie Ihr neues Passwort ein und bestätigen es im folgenden Feld." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Playout Verlauf" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Protokoll" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Dateiübersicht" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Sendungsübersicht" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Medienverzeichnisse verwalten" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "Allgemein" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Stream Einstellungen" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Speichern" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Erforderlich)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Erweiterte Optionen" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Die folgenden Informationen werden den Zuhörern in ihren Playern angezeigt:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Webseite Ihres Radiosenders)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "TuneIn Einstellungen" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "Gefährliche Einstellungen" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "Such-Kriterien:" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "oder" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "und" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " bis " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Folge wählen" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Keine Sendung" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Finden" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Ordner wählen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Festlegen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Aktueller Import Ordner:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Hinzufüg." - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s ist kein gültiges Datum" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Überwachten Ordner entfernen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Sie überwachen keine Medienordner." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Tage wählen:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Entfernen" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Wiederholen Tage:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Suche Sendungen" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filter Verlauf" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Show Source" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master Source" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s-%s-%s ist kein gültiger Zeitpunkt." + +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "Englisch" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "Afar" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "Abchasisch" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "Amharisch" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "Arabisch" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "Assamesisch" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "Aymarisch" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "Azerbaijani" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "Bashkirisch" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "Belarussisch" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "Bulgarisch" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "Biharisch" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "Bislamisch" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "Bengalisch" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "Tibetanisch" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "Bretonisch" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "Katalanisch" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "Korsisch" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "Tschechisch" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "Walisisch" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "Dänisch" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "Deutsch" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "Dzongkha" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "Griechisch" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "Esperanto" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "Spanisch" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "Estnisch" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "Baskisch" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "Persisch" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "Finnisch" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "Fijianisch" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "Färöisch" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "Französisch" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "Friesisch" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "Irisch" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "Schottisches Gälisch" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "Galizisch" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "Gujaratisch" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "Haussa" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "Kroatisch" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "Ungarisch" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "Armenisch" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "Indonesisch" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "Isländisch" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "Italienisch" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "Hebräisch" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "Japanisch" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "Jiddisch" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "Javanisch" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "Georgisch" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "Kasachisch" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "Kalaallisut" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "Kambodschanisch" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "Koreanisch" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "Kaschmirisch" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "Kurdisch" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "Kirgisisch" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "Latein" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "Laotisch" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "Litauisch" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "Lettisch" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr " Madagassisch" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "Maorisch" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "Mazedonisch" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "Mongolisch" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "Moldavisch" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "Malaysisch" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "Maltesisch" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "Burmesisch" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "Nauruisch" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "Nepalesisch" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "Holländisch" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "Norwegisch" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "Okzitanisch" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "Oriya" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "Pundjabisch" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "Polnisch" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "Paschtu" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "Portugiesisch" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "Quechua" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "Rätoromanisch" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "Kirundisch" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "Rumänisch" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "Russisch" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "Kijarwanda" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "Sanskrit" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "Sindhi" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "Sango" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "Serbokroatisch" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "Singhalesisch" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "Slowakisch" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "Slowenisch" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "Samoanisch" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "Schonisch" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "Somalisch" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "Albanisch" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "Serbisch" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "Swasiländisch" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "Sesothisch" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "Sundanesisch" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "Schwedisch" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "Swahili" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "Tamilisch" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "Tegulu" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "Tadschikisch" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "Thai" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "Tigrinja" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "Türkmenisch" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "Tagalog" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "Sezuan" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "Tongaisch" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "Türkisch" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "Tsongaisch" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "Tatarisch" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "Twi" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "Ukrainisch" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "Urdu" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "Usbekisch" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "Vietnamesisch" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "Volapük" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "Wolof" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "Chinesisch" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "Zulu" + +#: application/common/Timezone.php:21 +msgid "Use station default" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Lade Tracks hoch um sie deiner Bibliotheke hinzuzufügen!" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Benutzer verwalten" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Neuer Benutzer" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "ID" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Benutzername" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Vorname" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Nachname" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Benutzertyp" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "Zuhörer" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Statischen Block erweitern" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Dynamischen Block erweitern" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "Bearbeiten" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Beschreibung:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Dauer:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Playlist mischen" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Mischen" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist Crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Playlist leeren" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Leeren" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade Out: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Abbrechen" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Playlist speichern" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Keine Playlist geöffnet" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Wellenform anzeigen" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade In: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Originallänge:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "In Verwendung" - -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Klicke den 'Neue Sendung' Knopf und fülle die erforderlichen Felder aus." + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Alle" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Erweiterte Suchoptionen" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Beschreibung" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Standard Dauer:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Kein Webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Schließen" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "Mein Podcast" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "Allgemeine Felder" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Name" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Interpret" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Sprache" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "Link" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "iTunes Felder" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "Autor" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "Stichwörter" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "Zusammenfassung" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "Untertitel" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "Kategorie" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Datei-Import in Bearbeitung..." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Klicke auf die aktuelle Sendung und wähle 'Sendungsinhalte verwalten' um mit der Übertragung zu beginnen." -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Titel:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Interpret:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "Veröffentlichen" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Titel-Nr.:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Länge:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Samplerate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Stimmung:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Jahr:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Label:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Komponist:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Dirigent:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC-Nr.:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Webseite:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Sprache:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Dateipfad:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamischer Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statischer Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Titel-Nr." - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Playlist Inhalt: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Statischer Smart Block Inhalt: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dynamische Smart Block Kriterien: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Beschränken auf " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" -msgstr "%s Version" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Klicke auf die nächste Sendung und wähle 'Sendungsinhalte verwalten'" -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s." -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Speicherplatz" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "Radio Seite" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "zurück" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Kalender" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "Wiedergabe" +#: application/configs/navigation.php:43 +msgid "Widgets" +msgstr "Widgets" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "Pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "weiter" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "Stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "Stummschalten" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "Lautschalten" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "Maximale Lautstärke" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Update erforderlich" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Um die Medien zu spielen, müssen sie entweder Ihren Browser oder Ihr %s Flash-Plugin %s aktualisieren." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Erstelle Dateiübersichtsvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Erstelle Protokollvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Weitere Elemente hinzufügen" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Neues Feld hinzufügen" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Standardvorlage wählen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Protokollvorlagen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Neue Protokollvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Keine Protokollvorlagen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Standard festlegen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Dateiübersichtsvorlagen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Neue Dateiübersichtsvorlage" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Keine Dateiübersichtsvorlagen" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Über" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Für weitere ausführliche Hilfe, lesen sie bitte das %sBenutzerhandbuch%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live Stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Teilen" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Stream wählen:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Sendung hinzufügen" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Sendung aktualisieren" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Was" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Wann" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "Automatische Playlist" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Live Stream Input" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Wer" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Farbe" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Beginn" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Titel" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Länge" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Zuvor:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Danach:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Source Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Anhören" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Abmelden" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "Tracks" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlisten" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blöcke" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "Player" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "Einstellungen" + +#: application/configs/navigation.php:74 +msgid "General" +msgstr "Allgemein" + +#: application/configs/navigation.php:80 +msgid "My Profile" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Benutzer" + +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Playout Verlauf" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Verlaufsvorlagen" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Hörerstatistiken" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Hilfe" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Kurzanleitung" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Benutzerhandbuch" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "Etwas ist falsch gelaufen!" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Seite nicht gefunden!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" +#: application/configs/navigation.php:183 +msgid "What's New?" +msgstr "Was ist neu?" -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Scheinbar existiert die Seite die sie suchen nicht!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Playliste" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Play" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stop" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Mit diesem Eingang ist kein Signal verbunden." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Unbenannter Webstream" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream gespeichert." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Ungültige Formularwerte." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "Die angefragte Aktion wird nicht unterstützt." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "Ein interner Fehler ist aufgetreten." - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Benutzer erfolgreich hinzugefügt!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Benutzer erfolgreich aktualisiert!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Einstellungen erfolgreich aktualisiert!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Vorschau" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Cursor wählen" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Cursor entfernen" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Löschen" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "Sendung existiert nicht" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Einstellungen aktualisiert." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Stream-Einstellungen aktualisiert." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "Pfad muß angegeben werden" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem mit Liquidsoap ..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "Es wurden noch keine Tracks veröffentlicht." - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nicht gefunden" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Etwas ist falsch gelaufen." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Zur Playlist hinzufügen" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Zum Smart Block hinzufügen" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "Editieren..." - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Download" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplizierte Playlist" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Keine Aktion verfügbar" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist." - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "Datei(en) konnten nicht gelöscht werden." - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopie von %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen" -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "Datei existiert nicht in %s." -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Fehlerhafte Anfrage. Es wurde kein 'mode' Parameter übergeben." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Fehlerhafte Anfrage. 'Mode' Parameter ist ungültig" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Sie haben nicht die erforderliche Berechtigung, das Eingangssignal zu trennen." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Mit diesem Eingang ist kein Signal verbunden." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Sie haben nicht die erforderliche Berechtigung, das Signal umzuschalten." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "Die angefragte Aktion wird nicht unterstützt." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "Sie sind nicht berechtigt, auf diese Resource zuzugreifen. " + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "Ein interner Fehler ist aufgetreten." + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Sie betrachten eine ältere Version von %s" +msgid "%s Podcast" +msgstr "%s Podcast" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Es wurden noch keine Tracks veröffentlicht." -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung." +msgid "%s not found" +msgstr "%s nicht gefunden" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Sie können einem Smart Block nur Titel hinzufügen." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Etwas ist falsch gelaufen." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Vorschau" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Unbenannte Playlist" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Zur Playlist hinzufügen" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Unbenannter Smart Block" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Zum Smart Block hinzufügen" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Unbekannte Playlist" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Löschen" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "Editieren..." + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplizierte Playlist" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Keine Aktion verfügbar" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Sie haben nicht die erforderliche Berechtigung die gewählten Objekte zu löschen." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Die Datei konnte nicht gelöscht werden weil sie in einer zukünftigen Sendung eingeplant ist." + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "Datei(en) konnten nicht gelöscht werden." + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopie von %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Bitte prüfen sie, ob der Admin Nutzer/Password unter System->Stream korrekt eingetragen ist." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Etwas ist falsch gelaufen!" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Aufnahme:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Master Stream" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Live Stream" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Es ist nichts geplant" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Aktuelle Sendung:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Jetzt" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Sie verwenden die neueste Version" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Neue Version verfügbar: " -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Zu aktueller Playlist hinzufügen" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Zu aktuellem Smart Block hinzufügen" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "1 Objekt hinzufügen" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "%s Objekte hinzufügen" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Sie können einem Smart Block nur Titel hinzufügen (keine Playlist oa.)" -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Sie können einer Playlist nur Titel, Smart Blocks und Webstreams hinzufügen." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Bitte wählen sie eine Cursor-Position auf der Zeitleiste." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "Keine Tracks hinzugefügt" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "Keine Playlisten hinzugefügt" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "Keine Smart Blöcke hinzugefügt" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "Keine Webstreams hinzugefügt" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "Erfahre mehr über Tracks" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "Erfahre mehr über Playlisten" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "Erfahre mehr über Podcasts" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "Erfahre mehr über Smart Blöcke" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "Erfahre mehr über Webstreams" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Hinzufüg." + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Ändern" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Veröffentlichen" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Entfernen" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Metadaten ändern" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Zur ausgewählten Sendungen hinzufügen" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Auswählen" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Wählen sie diese Seite" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Wählen sie diese Seite ab" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Alle Abwählen" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Wollen sie die gewählten Objekte wirklich löschen?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Geplant" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Tracks" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playliste" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Titel" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Interpret" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Bitrate" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Komponist" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Dirigent" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Encoded By" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Sprache" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "geändert am" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Zuletzt gespielt" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Länge" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Stimmung" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Besitzer" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Samplerate" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Titelnummer" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Hochgeladen" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Webseite" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Jahr" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "wird geladen..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Alle" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Dateien" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlisten" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blöcke" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web Streams" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Unbekannter Typ: " -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Wollen sie das gewählte Objekt wirklich löschen?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Upload wird durchgeführt..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Daten werden vom Server abgerufen..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Fehlercode: " -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Fehlermeldung: " -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Der eingegeben Wert muß eine positive Zahl sein" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Der eingegebene Wert muß eine Zahl sein" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Der Wert muß in folgendem Format eingegeben werden: yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Der Wert muß in folgendem Format eingegeben werden: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Mein Podcast" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Sie laden momentan Dateien hoch. %s Beim wechseln der Seite wird der Upload-Vorgang abgebrochen. %s Sind sie sicher, dass sie die Seite verlassen wollen?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Medienordner" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "Bitte geben sie eine Zeit an '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Das Abspielen des folgenden Dateityps wird von ihrem Browser nicht unterstützt: " -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Bei einem Dynamischen Block ist keine Vorschau möglich" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Beschränken auf: " -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Playlist gespeichert" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Playliste gemischt" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "" "Airtime kann den Status dieser Datei nicht bestimmen.\n" "Das kann passieren, wenn die Datei auf einem nicht erreichbaren Netzlaufwerk liegt oder in einem Verzeichnis liegt, das nicht mehr überwacht wird." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Hörerzahl %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "In einer Woche erinnern" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Niemals erinnern" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Ja, Airtime helfen" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Ein Bild muß jpg, jpeg, png, oder gif sein" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "" "Ein Statischer Smart Block speichert die Kriterien und erstellt den Block sofort.\n" "Dadurch kann der Inhalt in der Bibliothek eingesehen und verändert werden bevor der Smart Block einer Sendung hinzugefügt wird." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "" "Ein Dynamischer Smart Block speichert nur die Kriterien.\n" "Dabei wird der Inhalt erst erstellt, wenn der Smart Block einer Sendung hinzugefügt wird. Der Inhalt des Smart Blocks kann daher nicht in der Bibliothek angezeigt oder bearbeitetet werden." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart Block gemischt" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Smart Block erstellt und Kriterien gespeichert" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Smart Block gespeichert" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "In Bearbeitung..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr " - Attribut - " -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "enthält" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "enthält nicht" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "ist" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "ist nicht" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "beginnt mit" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "endet mit" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "ist größer als" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "ist kleiner als" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "ist im Bereich" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Erstellen" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Wähle Speicher-Verzeichnis" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Wähle zu überwachendes Verzeichnis" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2507,2858 +1615,2304 @@ msgstr "" "Sind sie sicher, dass sie den Speicher-Verzeichnis ändern wollen?\n" "Dieser Vorgang entfernt alle Dateien der Airtime-Bibliothek!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Medienverzeichnisse verwalten" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Sind sie sicher, dass sie das überwachte Verzeichnis entfernen wollen?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Dieser Pfad ist derzeit nicht erreichbar." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Manche Stream-Typen erfordern zusätzliche Konfiguration. Details zum Aktivieren von %sAAC+ Support%s oder %sOpus Support%s sind in der WIKI bereitgestellt." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Mit dem Streaming-Server verbunden" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Der Stream ist deaktiviert" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Erhalte Information vom Server..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Verbindung mit Streaming-Server kann nicht hergestellt werden." -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "" "Diese Option aktiviert Metadaten für Ogg-Streams.\n" "(Stream-Metadaten wie Titel, Interpret und Sendungsname können von Audioplayern angezeigt werden.)\n" "VLC und mplayer haben ernsthafte Probleme beim Abspielen von Ogg/Vorbis-Streams mit aktivierten Metadaten: Beide Anwendungen werden die Verbindung zum Stream nach jedem Titel verlieren. Sollten sie einen Ogg-Stream verwenden und ihre Hörer keine Unterstützung für diese Audioplayer erwarten, können sie diese Option aktivieren." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Aktivieren sie dieses Kästchen, um die Master/Show-Source bei Unterbrechung der Leitung automatisch abzuschalten." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Aktivieren sie dieses Kästchen, um automatisch bei Verbindung einer Streameingabe umzuschalten." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Wenn Ihr Icecast Server den Benutzernamen 'source' erwartet, kann dieses Feld leer bleiben." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Wenn Ihr Live-Streaming-Client nicht nach einem Benutzernamen fragt, sollten Sie hier 'source' eintragen." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Admin Benutzer und Passwort, wird zur Abfrage der Zuhörerdaten in Icecast/SHOUTcast verwendet." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Warnung: Dieses Feld kann nicht geändert werden, während die Sendung wiedergegeben wird." -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Kein Ergebnis gefunden" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Diese Einstellung folgt den gleichen Sicherheitsvorlagen für Sendung: Nur Benutzer denen diese Sendung zugewiesen wurde, können sich verbinden." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Bestimmen einer benutzerdefinierten Anmeldung eintragen, welche nur für diese Sendung funktionieren wird." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Die Sendungsinstanz existiert nicht mehr!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Warnung: Verknüpfte Sendungen können nicht erneut verknüpft werden" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Beim Verknüpfen von wiederkehrenden Sendungen werden jegliche Medien, die in einer wiederkehrenden Sendung geplant sind, auch in den anderen Sendungen geplant." -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Die Zeitzone ist standardmäßig auf die Zeitzone der Radiostation eingestellt. Der Im Kalender werden die Sendungen in jener Ortszeit dargestellt, welche in den Benutzereinstellungen für das Interface festgelegt wurde." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Sendung" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Sendung ist leer" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Daten werden vom Server abgerufen..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Diese Sendung hat keinen festgelegten Inhalt." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Diese Sendung ist noch nicht vollständig mit Inhalten gefüllt." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Januar" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Februar" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "März" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "April" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Mai" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Juni" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Juli" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "August" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "September" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Oktober" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "November" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Dezember" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Jan." -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Feb." -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mrz." -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Apr." -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Jun." -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Jul." -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Aug." -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Sep." -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Okt." -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov." -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dez." -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Sonntag" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Montag" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Dienstag" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Mittwoch" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Donnerstag" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Freitag" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Samstag" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "So." -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Mo." -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Di." -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Mi." -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Do." -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Fr." -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sa." -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Wenn der Inhalt einer Sendung länger ist als im Kalender festgelegt ist, wird das Ende durch eine nachfolgende Sendung abgschnitten." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Aktuelle Sendung abbrechen?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Aufnahme der aktuellen Sendung stoppen?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Speichern" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Sendungsinhalt" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Gesamten Inhalt entfernen?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Gewählte Objekte löschen?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Beginn" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Ende" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Dauer" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Sendung ist leer" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Aufnehmen über Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Titel Vorschau" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Es ist keine Planung außerhalb einer Sendung möglich." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Verschiebe 1 Objekt" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Verschiebe %s Objekte" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Speichern" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Abbrechen" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Fade Editor" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Cue Editor" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Wellenform-Funktionen ist nur in Browsern möglich, welche die Web Audio API unterstützen" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Alles auswählen" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Nichts auswählen" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Ausgewählte Elemente aus dem Programm entfernen" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Springe zu aktuellem Titel" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Aktuelle Sendung abbrechen" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Um Inhalte hinzuzufügen oder zu entfernen muß die Bibliothek geöffnet werden" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Inhalt hinzufügen / entfernen" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "In Verwendung" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disk" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Suchen in" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Öffnen" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Admin" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Programm Manager" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Gast" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Gäste können folgendes tun:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Kalender betrachten" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Sendungsinhalt betrachten" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "DJs können folgendes tun:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Verwalten zugewiesener Sendungsinhalte" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Mediendateien importieren" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Erstellen von Playlisten, Smart Blöcken und Webstreams" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Verwalten eigener Bibliotheksinhalte" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Sendungsinhalte betrachten und verwalten" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Sendungen festlegen" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Verwalten der gesamten Bibliothek" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Admins können folgendes tun:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Einstellungen verwalten" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Benutzer verwalten" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Verwalten überwachter Verzeichnisse" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Support Feedback senden" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "System Status betrachten" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Zugriff auf Playlist Verlauf" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Hörerstatistiken betrachten" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Spalten auswählen" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Von {from} bis {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "So" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Mo" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Di" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Mi" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Do" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Fr" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Sa" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Schließen" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Stunde" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minute" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Fertig" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Dateien auswählen" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Dateien zur Uploadliste hinzufügen und den Startbutton klicken." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Dateien hinzufügen" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Upload stoppen" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Upload starten" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Dateien hinzufügen" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "%d/%d Dateien hochgeladen" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Dateien in dieses Feld ziehen.(Drag & Drop)" -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Fehler in der Dateierweiterung." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Fehler in der Dateigröße." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Fehler in der Dateianzahl" -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Init Fehler." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "HTTP Fehler." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Sicherheitsfehler." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Allgemeiner Fehler." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "IO Fehler." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Datei: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d Dateien in der Warteschlange" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Datei: %f, Größe: %s, Maximale Dateigröße: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Upload-URL scheint falsch zu sein oder existiert nicht" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Fehler: Datei zu groß: " -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Fehler: ungültige Dateierweiterung: " -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Standard festlegen" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Eintrag erstellen" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Verlaufsprotokoll bearbeiten" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Keine Sendung" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s Reihen%s in die Zwischenablage kopiert" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sDruckansicht%sBenutzen sie bitte die Druckfunktion des Browsers, um diese Tabelle auszudrucken. Wenn sie fertig sind, drücken sie die Escape-Taste." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "Autor" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Beschreibung" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "Link" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Aktiviert" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Deaktiviert" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Sie betrachten eine ältere Version von %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Sie können einem Smart Block nur Titel hinzufügen." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Unbenannte Playlist" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Unbenannter Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Unbekannte Playlist" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Einstellungen aktualisiert." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Stream-Einstellungen aktualisiert." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "Pfad muß angegeben werden" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem mit Liquidsoap ..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Wiederholung der Sendung %s vom %s um %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Cursor wählen" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Cursor entfernen" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "Sendung existiert nicht" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Aufzeichnung existiert nicht" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Metadaten der aufgezeichneten Datei anzeigen" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Sendungsinhalte verwalten" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Benutzer erfolgreich hinzugefügt!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Benutzer erfolgreich aktualisiert!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Sendung ändern" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Einstellungen erfolgreich aktualisiert!" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Unbenannter Webstream" -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream gespeichert." -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Ungültige Formularwerte." -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Ungültiges Zeichen eingegeben" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Tag muß angegeben werden" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Zeit muß angegeben werden" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Sendungen können nicht überlappend geplant werden." - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Titel" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Startzeit" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Endzeit" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Abgespielt" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr " - Kriterien - " - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "Stunden" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "Minuten" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "Titel" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamisch" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statisch" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Playlist-Inhalt erstellen und Kriterien speichern" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Inhalt der Playlist Mischen" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Beschränkung kann nicht größer als 24 Stunden sein" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Der Wert muß eine ganze Zahl sein" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Die Anzahl der Objekte ist auf 500 beschränkt" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Sie müssen Kriterium und Modifikator bestimmen" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Der eingegebene Wert muß aus Ziffern bestehen" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Der Wert darf nicht leer sein" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC-Nr.:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "Veröffentlichen..." - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Verzeichnis:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Überwachte Verzeichnisse:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Kein gültiges Verzeichnis" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Verknüpfen:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Wiederholungstyp:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "wöchentlich" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "jede zweite Woche" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "jede dritte Woche" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "jede vierte Woche" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "monatlich" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Tage wählen:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Wiederholung von:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "Tag des Monats" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "Tag der Woche" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Zeitpunkt Ende:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Kein Enddatum?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Enddatum muß nach dem Startdatum liegen" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Bitte einen Tag zum Wiederholen wählen" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Wert ist erforderlich und darf nicht leer sein" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' ist nicht im Format 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Zeitzone:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Wiederholungen?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat." - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Benutzername:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Passwort:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Passwort bestätigen:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Vorname:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nachname:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-Mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobiltelefon:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Benutzertyp:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Benutzername ist bereits vorhanden." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Benutzerdefiniertes Login:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Benutzerdefinierter Benutzername" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Benutzerdefiniertes Passwort" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Das Feld Benutzername darf nicht leer sein." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Das Feld Passwort darf nicht leer sein." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Aufzeichnen von Line-In?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Sendestation Zeitzone" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Wiederholen?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "Tage" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Verknüpfen:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Wiederholungstyp:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Zeitpunkt Beginn:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "wöchentlich" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Ungültiges Zeichen eingegeben" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "jede zweite Woche" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Suche Benutzer:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "jede dritte Woche" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "jede vierte Woche" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monatlich" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Alle meine Sendungen:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Tage wählen:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Wiederholung von:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "Tag des Monats" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Tag der Woche" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Zeitpunkt Ende:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Kein Enddatum?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Enddatum muß nach dem Startdatum liegen" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Bitte einen Tag zum Wiederholen wählen" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Hintergrundfarbe:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Textfarbe:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Tag muß angegeben werden" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Zeit muß angegeben werden" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Unbenannte Sendung" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Beschreibung:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' ist nicht im Format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Dauer:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Zeitzone:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Wiederholungen?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Es kann keine Sendung für einen vergangenen Zeitpunkt geplant werden" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat." + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Die Dauer einer Sendung kann nicht kürzer als 0 Minuten sein." + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Sendungen können nicht überlappend geplant werden." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Suche Benutzer:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Benutzername:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Passwort:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Passwort bestätigen:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Vorname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Nachname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-Mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobiltelefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Benutzertyp:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Benutzername ist bereits vorhanden." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Zeitpunkt Beginn:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titel:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Interpret:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Jahr:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Komponist:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Stimmung:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC-Nr.:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Webseite:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Sprache:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "Veröffentlichen..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Startzeit" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Endzeit" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Interface Zeitzone:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Sendername" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Sender Logo:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Standard Crossfade Dauer (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Standard Fade In (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Standard Fade Out (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Sendestation Zeitzone" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Woche beginnt am" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Aufzeichnen von Line-In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Wiederholen?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Passwort zurücksetzen" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Es sind nur Zahlen erlaubt" -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Anmeldung" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Passwort" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Neues Passwort bestätigen" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Passwortbestätigung stimmt nicht mit Passwort überein." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Benutzername" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "Tage" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Aktiviert:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Typ:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Typ:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanäle:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Benutzer" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Passwort" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server darf nicht leer sein." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port darf nicht leer sein." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Zeitzone:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Jetzt" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Alle meine Sendungen:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' ist kürzer als %min% Zeichen lang" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' ist mehr als %max% Zeichen lang" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr " - Kriterien - " -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwörter stimmen nicht überein" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "Stunden" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "Minuten" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "Titel" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamisch" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statisch" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Playlist-Inhalt erstellen und Kriterien speichern" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Inhalt der Playlist Mischen" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Mischen" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Beschränkung kann nicht größer als 24 Stunden sein" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Der Wert muß eine ganze Zahl sein" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "Die Anzahl der Objekte ist auf 500 beschränkt" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Sie müssen Kriterium und Modifikator bestimmen" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Der eingegebene Wert muß aus Ziffern bestehen" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Der Wert darf nicht leer sein" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis Metadata" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Streambezeichnung:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Artist - Titel" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Sendung - Artist - Titel" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Sender - Sendung" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Off Air Metadaten" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Replay Gain aktivieren" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Replay Gain Modifikator" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Das Jahr %s muß im Bereich zwischen 1753 und 9999 sein" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s ist kein gültiges Datum" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s-%s-%s ist kein gültiger Zeitpunkt." - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "Lade Tracks hoch um sie deiner Bibliotheke hinzuzufügen!" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Es sieht aus als ob du noch keine Audiodateien hochgeladen hast. %sAudiodatei hochladen%s." - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Klicke den 'Neue Sendung' Knopf und fülle die erforderlichen Felder aus." - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Es sieht aus als ob du noch keine Sendung geplant hast. %sErstelle jetzt eine Sendung%s." - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Aktiviert:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Klicke auf die aktuelle Sendung und wähle 'Sendungsinhalte verwalten' um mit der Übertragung zu beginnen." +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Stream Typ:" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bitrate:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Service Typ:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanäle:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin Benutzer" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Admin Passwort" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server darf nicht leer sein." + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port darf nicht leer sein." + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Klicke auf die nächste Sendung und wähle 'Sendungsinhalte verwalten'" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Es sieht aus als ob die nächste Sendung leer ist. %s.Füge deiner Sendung Audioinhalte hinzu%s." - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "Englisch" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "Afar" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "Abchasisch" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "Amharisch" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "Arabisch" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "Assamesisch" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "Aymarisch" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "Bashkirisch" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "Belarussisch" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "Bulgarisch" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "Biharisch" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "Bislamisch" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "Bengalisch" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "Tibetanisch" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "Bretonisch" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "Katalanisch" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "Korsisch" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "Tschechisch" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "Walisisch" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "Dänisch" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "Deutsch" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "Dzongkha" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "Griechisch" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "Esperanto" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "Spanisch" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "Estnisch" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "Baskisch" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "Persisch" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "Finnisch" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "Fijianisch" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "Färöisch" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "Französisch" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "Friesisch" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "Irisch" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "Schottisches Gälisch" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "Galizisch" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "Guarani" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "Gujaratisch" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "Haussa" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "Hindi" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "Kroatisch" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "Ungarisch" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "Armenisch" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "Interlingua" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "Interlingue" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "Inupiak" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "Indonesisch" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "Isländisch" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "Italienisch" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "Hebräisch" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "Japanisch" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "Jiddisch" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "Javanisch" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "Georgisch" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "Kasachisch" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "Kalaallisut" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "Kambodschanisch" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "Kannada" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "Koreanisch" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "Kaschmirisch" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "Kurdisch" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "Kirgisisch" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "Latein" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "Lingala" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "Laotisch" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "Litauisch" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "Lettisch" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr " Madagassisch" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "Maorisch" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "Mazedonisch" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "Malayalam" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "Mongolisch" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "Moldavisch" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "Marathi" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "Malaysisch" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "Maltesisch" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "Burmesisch" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "Nauruisch" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "Nepalesisch" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "Holländisch" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "Norwegisch" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "Okzitanisch" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "Oriya" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "Pundjabisch" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "Polnisch" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "Paschtu" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "Portugiesisch" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "Quechua" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "Rätoromanisch" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "Kirundisch" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "Rumänisch" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "Russisch" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "Kijarwanda" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "Sanskrit" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "Sindhi" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "Sango" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "Serbokroatisch" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "Singhalesisch" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "Slowakisch" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "Slowenisch" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "Samoanisch" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "Schonisch" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "Somalisch" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "Albanisch" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "Serbisch" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "Swasiländisch" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "Sesothisch" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "Sundanesisch" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "Schwedisch" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "Swahili" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "Tamilisch" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "Tegulu" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "Tadschikisch" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "Thai" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "Tigrinja" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "Türkmenisch" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "Tagalog" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "Sezuan" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "Tongaisch" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "Türkisch" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "Tsongaisch" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "Tatarisch" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "Twi" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "Ukrainisch" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "Urdu" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "Usbekisch" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "Vietnamesisch" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "Volapük" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "Wolof" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "Xhosa" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "Yoruba" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "Chinesisch" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "Zulu" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue In und Cue Out sind Null." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Cue In darf nicht größer als Cue Out sein." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Cue In darf nicht größer als die Gesamtlänge der Datei sein." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Cue Out darf nicht kleiner als Cue In sein." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Dauer muß länger als 0 Minuten sein." - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Dauer im Format \"00h 00m\" eingeben." - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL im Format \"http://domain\" eingeben." - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL darf aus höchstens 512 Zeichen bestehen." - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Die XSPF Playlist konnte nicht eingelesen werden" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Die PLS Playlist konnte nicht eingelesen werden" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Die M3U Playlist konnte nicht eingelesen werden" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unbekannter Stream-Typ: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Wiederholung der Sendung %s von %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Land wählen" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Inhalte aus verknüpften Sendungen können nicht verschoben werden" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Die Sendung %s ist beendet und kann daher nicht verändert werden." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Die Sendung %s wurde bereits aktualisiert!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Eine der gewählten Dateien existiert nicht!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s wird bereits überwacht." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s ist kein gültiges Verzeichnis." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Verzeichnis:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Überwachte Verzeichnisse:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Kein gültiges Verzeichnis" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Wert ist erforderlich und darf nicht leer sein" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' ist kürzer als %min% Zeichen lang" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' ist mehr als %max% Zeichen lang" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwörter stimmen nicht überein" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5366,7 +3920,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5374,7 +3928,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5383,20 +3937,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue In und Cue Out sind Null." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Cue In darf nicht größer als die Gesamtlänge der Datei sein." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Cue In darf nicht größer als Cue Out sein." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Cue Out darf nicht kleiner als Cue In sein." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s wird bereits überwacht." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s enthält andere bereits überwachte Verzeichnisse: %s " + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s ist ein Unterverzeichnis eines bereits überwachten Verzeichnisses: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s ist kein gültiges Verzeichnis." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s ist bereits als aktuelles Speicherverzeichnis bestimmt oder in der Liste überwachter Verzeichnisse." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s existiert nicht in der Liste überwachter Verzeichnisse." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Land wählen" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Inhalte aus verknüpften Sendungen können nicht verschoben werden" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!(Kalender falsch zugeordnet)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell! (Instanz falsch zugeordnet)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Der Kalender den sie sehen ist nicht mehr aktuell!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Sie haben nicht die erforderliche Berechtigung einen Termin für die Sendung %s zu festzulegen." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Einer Sendungsaufzeichnung können keine Dateien hinzugefügt werden." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Die Sendung %s ist beendet und kann daher nicht verändert werden." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Die Sendung %s wurde bereits aktualisiert!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Eine der gewählten Dateien existiert nicht!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Die Maximaldauer einer Sendung beträgt 24 Stunden." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5404,149 +4076,230 @@ msgstr "" "Sendungen können nicht überlappend geplant werden.\n" "Beachte: Wird die Dauer einer wiederkehrenden Sendung verändert, wirkt sich das auch auf alle Wiederholungen aus." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Wiederholung der Sendung %s von %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Dauer muß länger als 0 Minuten sein." + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Dauer im Format \"00h 00m\" eingeben." + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL im Format \"http://domain\" eingeben." + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL darf aus höchstens 512 Zeichen bestehen." + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Es konnte kein MIME-Typ für den Webstream gefunden werden." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Die Bezeichnung eines Webstreams darf nicht leer sein." + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Die XSPF Playlist konnte nicht eingelesen werden" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Die PLS Playlist konnte nicht eingelesen werden" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Die M3U Playlist konnte nicht eingelesen werden" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Ungültiger Webstream - Die eingegebene URL scheint ein Dateidownload zu sein." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unbekannter Stream-Typ: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Aufzeichnung existiert nicht" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Metadaten der aufgezeichneten Datei anzeigen" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Sendungsinhalte verwalten" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "Radio Seite" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "Widgets" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "Einstellungen" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Benutzer" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Verlaufsvorlagen" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Sendung ändern" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Hörerstatistiken" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Kurzanleitung" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Benutzerhandbuch" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Titel" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Abgespielt" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "Was ist neu?" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "Facebook" -#~ msgstr "Facebook" +#~ msgid " to " +#~ msgstr " bis " -#~ msgid "View track" -#~ msgstr "Track anzeigen" +#, php-format +#~ msgid "%s Version" +#~ msgstr "%s Version" -#~ msgid "Update track" -#~ msgstr "Track aktualisieren" +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Wenn Airtime nicht genug einzigartige Titel findet, die Ihren Kriterien entsprechen, kann die gewünschte Länge des Smart Blocks nicht erreicht werden. Wenn sie möchten, dass Titel mehrfach zum Smart Block hinzugefügt werden können, aktivieren sie diese Option." +#~ msgid "(Required)" +#~ msgstr "(Erforderlich)" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "" -#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" -#~ "In diesem Fall müssen sie die URL manuell eintragen, damit Ihren DJs der richtige Host/Port/Mount zur verbindung anzeigt wird. Der erlaubte Port-Bereich liegt zwischen 1024 und 49151." +#~ msgid "(Your radio station website)" +#~ msgstr "(Webseite Ihres Radiosenders)" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Programm Manager können folgendes tun:" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Support setting updated." -#~ msgstr "Support-Einstellungen aktualisiert." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" +#~ msgid "About" +#~ msgstr "Über" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Geben sie die Zeichen aus dem Bild unten ein." +#~ msgid "Add New Field" +#~ msgstr "Neues Feld hinzufügen" -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "Add more elements" +#~ msgstr "Weitere Elemente hinzufügen" -#~ msgid "Station Web Site:" -#~ msgstr "Sender-Webseite:" +#~ msgid "Add this show" +#~ msgstr "Sendung hinzufügen" -#~ msgid "Country:" -#~ msgstr "Land:" +#~ msgid "Additional Options" +#~ msgstr "Erweiterte Optionen" -#~ msgid "City:" -#~ msgstr "Stadt:" - -#~ msgid "Station Description:" -#~ msgstr "Sender Beschreibung:" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." - -#~ msgid "Default License:" -#~ msgstr "Standard Lizenz:" +#~ msgid "Advanced Search Options" +#~ msgstr "Erweiterte Suchoptionen" #~ msgid "All rights are reserved" #~ msgstr "Alle Rechte vorbehalten" -#~ msgid "The work is in the public domain" -#~ msgstr "Die Rechte an dieser Arbeit sind gemeinfrei" +#~ msgid "Audio Track" +#~ msgstr "Titel-Nr." + +#~ msgid "Autoloading Playlist" +#~ msgstr "Automatische Playlist" + +#~ msgid "Category" +#~ msgstr "Kategorie" + +#~ msgid "Choose Days:" +#~ msgstr "Tage wählen:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Folge wählen" + +#~ msgid "Choose folder" +#~ msgstr "Ordner wählen" + +#~ msgid "City:" +#~ msgstr "Stadt:" + +#~ msgid "Clear" +#~ msgstr "Leeren" + +#~ msgid "Country:" +#~ msgstr "Land:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Erstelle Dateiübersichtsvorlage" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Erstelle Protokollvorlage" #~ msgid "Creative Commons Attribution" #~ msgstr "[CC-BY] Creative Commons Namensnennung" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "[CC-BY-ND] Creative Commons Namensnennung, keine Bearbeitung" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "[CC-BY-NC-ND] Creative Commons Namensnennung, keine kommerzielle Nutzung, keine Bearbeitung" @@ -5554,32 +4307,411 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "[CC-BY-NC-SA] Creative Commons Namensnennung, keine kommerzielle Nutzung, Weitergabe unter gleichen Bedingungen" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Aktueller Import Ordner:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Dangerous Options" +#~ msgstr "Gefährliche Einstellungen" + +#~ msgid "Default Length:" +#~ msgstr "Standard Dauer:" + +#~ msgid "Default License:" +#~ msgstr "Standard Lizenz:" + +#~ msgid "Disk Space" +#~ msgstr "Speicherplatz" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamischer Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamische Smart Block Kriterien: " + +#~ msgid "Editing " +#~ msgstr "Bearbeiten" + +#~ msgid "Empty playlist content" +#~ msgstr "Playlist leeren" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dynamischen Block erweitern" + +#~ msgid "Expand Static Block" +#~ msgstr "Statischen Block erweitern" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Fade in: " +#~ msgstr "Fade In: " + +#~ msgid "Fade out: " +#~ msgstr "Fade Out: " + +#~ msgid "File Path:" +#~ msgstr "Dateipfad:" + +#~ msgid "File Summary" +#~ msgstr "Dateiübersicht" + +#~ msgid "File Summary Templates" +#~ msgstr "Dateiübersichtsvorlagen" + +#~ msgid "File import in progress..." +#~ msgstr "Datei-Import in Bearbeitung..." + +#~ msgid "Filter History" +#~ msgstr "Filter Verlauf" + +#~ msgid "Find" +#~ msgstr "Finden" + +#~ msgid "Find Shows" +#~ msgstr "Suche Sendungen" + +#~ msgid "First Name" +#~ msgstr "Vorname" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Für weitere ausführliche Hilfe, lesen sie bitte das %sBenutzerhandbuch%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Für weitere Information lesen sie bitte das %sAirtime Benutzerhandbuch%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Passwort vergessen?" + +#~ msgid "General Fields" +#~ msgstr "Allgemeine Felder" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "" +#~ "Falls sich Airtime hinter einem Router oder einer Firewall befindet, müssen sie gegebenenfalls eine Portweiterleitung konfigurieren. \n" +#~ "In diesem Fall müssen sie die URL manuell eintragen, damit Ihren DJs der richtige Host/Port/Mount zur verbindung anzeigt wird. Der erlaubte Port-Bereich liegt zwischen 1024 und 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC-Nr.:" + +#~ msgid "Keywords" +#~ msgstr "Stichwörter" + +#~ msgid "Last Name" +#~ msgstr "Nachname" + +#~ msgid "Length:" +#~ msgstr "Länge:" + +#~ msgid "Limit to " +#~ msgstr "Beschränken auf " + +#~ msgid "Listen" +#~ msgstr "Anhören" + +#~ msgid "Listeners" +#~ msgstr "Zuhörer" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live Stream" + +#~ msgid "Log Sheet" +#~ msgstr "Protokoll" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Protokollvorlagen" + +#~ msgid "Logout" +#~ msgstr "Abmelden" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Scheinbar existiert die Seite die sie suchen nicht!" + +#~ msgid "Manage Users" +#~ msgstr "Benutzer verwalten" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "New File Summary Template" +#~ msgstr "Neue Dateiübersichtsvorlage" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Neue Protokollvorlage" + +#~ msgid "New User" +#~ msgstr "Neuer Benutzer" + +#~ msgid "New password" +#~ msgstr "Neues Passwort" + +#~ msgid "Next:" +#~ msgstr "Danach:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Keine Dateiübersichtsvorlagen" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Keine Protokollvorlagen" + +#~ msgid "No open playlist" +#~ msgstr "Keine Playlist geöffnet" + +#~ msgid "No webstream" +#~ msgstr "Kein Webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Originallänge:" + +#~ msgid "Page not found!" +#~ msgstr "Seite nicht gefunden!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Inhalt: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist Crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Bitte geben sie Ihr neues Passwort ein und bestätigen es im folgenden Feld." + +#~ msgid "Please upgrade to " +#~ msgstr "Bitte aktualisieren sie auf " + +#~ msgid "Previous:" +#~ msgstr "Zuvor:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Programm Manager können folgendes tun:" + #~ msgid "Register Airtime" #~ msgstr "Airtime registrieren" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Ausschließlich zu Kontrollzwecken, wird nicht veröffentlicht)" +#~ msgid "Remove watched directory" +#~ msgstr "Überwachten Ordner entfernen" + +#~ msgid "Repeat Days:" +#~ msgstr "Wiederholen Tage:" + +#~ msgid "Sample Rate:" +#~ msgstr "Samplerate:" + +#~ msgid "Save playlist" +#~ msgstr "Playlist speichern" + +#~ msgid "Search Criteria:" +#~ msgstr "Such-Kriterien:" + +#~ msgid "Select stream:" +#~ msgstr "Stream wählen:" + +#~ msgid "Set" +#~ msgstr "Festlegen" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Standardvorlage wählen" + +#~ msgid "Share" +#~ msgstr "Teilen" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Sendungsübersicht" + +#~ msgid "Show Waveform" +#~ msgstr "Wellenform anzeigen" #~ msgid "Show me what I am sending " #~ msgstr "Zeige mir was ich sende " +#~ msgid "Shuffle playlist" +#~ msgstr "Playlist mischen" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Statischer Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statischer Smart Block Inhalt: " + +#~ msgid "Station Description:" +#~ msgstr "Sender Beschreibung:" + +#~ msgid "Station Web Site:" +#~ msgstr "Sender-Webseite:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Einstellungen" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Farbe" + +#~ msgid "Subtitle" +#~ msgstr "Untertitel" + +#~ msgid "Summary" +#~ msgstr "Zusammenfassung" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support-Einstellungen aktualisiert." + #~ msgid "Terms and Conditions" #~ msgstr "Allgemeine Geschäftsbedingungen" -#~ msgid "files meet the criteria" -#~ msgstr "Dateien entsprechen den Kriterien" +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Wenn Airtime nicht genug einzigartige Titel findet, die Ihren Kriterien entsprechen, kann die gewünschte Länge des Smart Blocks nicht erreicht werden. Wenn sie möchten, dass Titel mehrfach zum Smart Block hinzugefügt werden können, aktivieren sie diese Option." -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Um ihre Radiostation bewerben zu können, muß 'Support Feedback senden' aktiviert sein)" +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Die folgenden Informationen werden den Zuhörern in ihren Playern angezeigt:" -#~ msgid "Your trial expires in" -#~ msgstr "Ihre Testperiode endet in" - -#~ msgid "This version will soon be obsolete." -#~ msgstr "Diese Version wird in Kürze veraltet sein." +#~ msgid "The work is in the public domain" +#~ msgstr "Die Rechte an dieser Arbeit sind gemeinfrei" #~ msgid "This version is no longer supported." #~ msgstr "Diese Version wird technisch nicht mehr unterstützt." -#~ msgid "Please upgrade to " -#~ msgstr "Bitte aktualisieren sie auf " +#~ msgid "This version will soon be obsolete." +#~ msgstr "Diese Version wird in Kürze veraltet sein." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Um die Medien zu spielen, müssen sie entweder Ihren Browser oder Ihr %s Flash-Plugin %s aktualisieren." + +#~ msgid "Track:" +#~ msgstr "Titel-Nr.:" + +#~ msgid "TuneIn Settings" +#~ msgstr "TuneIn Einstellungen" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Geben sie die Zeichen aus dem Bild unten ein." + +#~ msgid "Update Required" +#~ msgstr "Update erforderlich" + +#~ msgid "Update show" +#~ msgstr "Sendung aktualisieren" + +#~ msgid "Update track" +#~ msgstr "Track aktualisieren" + +#~ msgid "User Type" +#~ msgstr "Benutzertyp" + +#~ msgid "View track" +#~ msgstr "Track anzeigen" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Was" + +#~ msgid "When" +#~ msgstr "Wann" + +#~ msgid "Who" +#~ msgstr "Wer" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Sie überwachen keine Medienordner." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." + +#~ msgid "Your trial expires in" +#~ msgstr "Ihre Testperiode endet in" + +#~ msgid "and" +#~ msgstr "und" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "Dateien entsprechen den Kriterien" + +#~ msgid "iTunes Fields" +#~ msgstr "iTunes Felder" + +#~ msgid "id" +#~ msgstr "ID" + +#~ msgid "max volume" +#~ msgstr "Maximale Lautstärke" + +#~ msgid "mute" +#~ msgstr "Stummschalten" + +#~ msgid "next" +#~ msgstr "weiter" + +#~ msgid "or" +#~ msgstr "oder" + +#~ msgid "pause" +#~ msgstr "Pause" + +#~ msgid "play" +#~ msgstr "Wiedergabe" + +#~ msgid "previous" +#~ msgstr "zurück" + +#~ msgid "stop" +#~ msgstr "Stop" + +#~ msgid "unmute" +#~ msgstr "Lautschalten" diff --git a/legacy/locale/el_GR/LC_MESSAGES/libretime.po b/legacy/locale/el_GR/LC_MESSAGES/libretime.po index 4ef49402f..53ec699e1 100644 --- a/legacy/locale/el_GR/LC_MESSAGES/libretime.po +++ b/legacy/locale/el_GR/LC_MESSAGES/libretime.po @@ -1,2495 +1,1604 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Katerina Michailidi , 2014 # Sourcefabric , 2013 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Greek (Greece) (http://www.transifex.com/sourcefabric/airtime/language/el_GR/)\n" +"Language-Team: Greek (Greece)\n" "Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Σύνδεση" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Νέος κωδικός πρόσβασης" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Παρακαλώ εισάγετε και επαληθεύστε τον νέο κωδικό πρόσβασής σας στα παρακάτω πεδία. " - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Ιστορικό Playout" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Σελίδα Σύνδεσης" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Περίληψη Αρχείων" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Προβολή Περίληψης" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Διαχείριση Φακέλων Πολυμέσων" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Ρυθμίσεις Stream" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Αποθήκευση" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "βΔ" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Απαιτείται)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Πρόσθετες επιλογές" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Η παρακάτω πληροφορία θα εμφανίζεται στις συσκευές αναπαραγωγής πολυμέσων των ακροατών σας:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Ιστοσελίδα του Ραδιοφωνικού σταθμού)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL Stream: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "ή" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "και" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " να " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Επιλογή Παρουσίας Εκπομπής" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Καμία Εκπομπή" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Εύρεση" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Επιλέξτε φάκελο" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Ορισμός" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Τρέχων Φάκελος Εισαγωγής:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Προσθήκη" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Αφαίρεση προβεβλημμένου ευρετηρίου" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Δεν παρακολουθείτε κανέναν φάκελο πολυμέσων." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Επιλέξτε Ημέρες:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Αφαίρεση" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Επανάληψη Ημερών:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Εύρεση Εκπομπών" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Φιλτράρισμα Ιστορίας" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Εμφάνιση Πηγής " - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Κύρια Πηγή " - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "ΟΚ" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Διαχείριση Χρηστών" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Νέος Χρήστης" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "ταυτότητα" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Όνομα Χρήστη" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Όνομα" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Επώνυμο" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Τύπος Χρήστη" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Επέκταση Στατικών Block" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Επέκταση Δυναμικών Block" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Όνομα:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Περιγραφή:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Διάρκεια:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Shuffle λίστα αναπαραγωγής" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Shuffle" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Crossfade λίστας αναπαραγωγής" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Άδειασμα περιεχομένου λίστας αναπαραγωγής" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Εκκαθάριση" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade out: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Ακύρωση" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Αποθήκευση λίστας αναπαραγωγής" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Καμία ανοικτή λίστα αναπαραγωγής" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Εμφάνιση κυμματοειδούς μορφής" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(Ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade in: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(ωω:λλ:δδ.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Αρχική Διάρκεια:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "σε χρήση" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Όλα" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Προηγμένες Επιλογές Αναζήτησης" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Περιγραφή" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL Stream:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Προεπιλεγμένη Διάρκεια:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Κανένα webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Κλείσιμο" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Ονομασία" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Δημιουργός" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Γλώσσα" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Εισαγωγή αρχείου σε εξέλιξη..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Τίτλος:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Δημιουργός:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Κομμάτι:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Διάρκεια:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Ρυθμός δειγματοληψίας:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Ρυθμός Δεδομένων:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Διάθεση:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Είδος:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Έτος" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Δισκογραφική:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Συνθέτης:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Μαέστρος:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Αριθμός ISRC:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Ιστοσελίδα:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Γλώσσα:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Διαδρομή Αρχείου" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Δυναμικά Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Στατικά Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Κομμάτι Ήχου" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Περιεχόμενα Λίστας Αναπαραγωγής: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Περιεχόμενα Στατικών Smart Block : " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Κριτήρια Δυναμικών Smart Block: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Όριο για " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "Διεύθυνση URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Κατάσταση" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Χώρος δίσκου" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "προηγούμενο" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Ημερολόγιο" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "αναπαραγωγή" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "παύση" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "επόμενο" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "στάση" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "Σίγαση" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "Κατάργηση σίγασης" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "μέγιστη ένταση" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Απαιτείται Ενημέρωση " - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Για να παίξετε τα πολυμέσα θα πρέπει είτε να αναβαθμίστε το πρόγραμμα περιήγησηής σας σε μια πρόσφατη έκδοση ή να ενημέρώσετε το %sFlash plugin %s σας." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Δημιουργία Αρχείου Περίληψης Template " - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Δημιουργία Template Φόρμας Σύνδεσης" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Προσθήκη περισσότερων στοιχείων" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Προσθήκη Νέου Πεδίου" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Ορισμός Προεπιλεγμένου Template " - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Template Φόρμας Σύνδεσης" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Νέο Template Φόρμας Σύνδεσης" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Κανένα Template Φόρμας Σύνδεσης" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Ως Προεπιλογή" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Template Περίληψης Αρχείου" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Νέο Template Περίληψης Αρχείου" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Κανένα Template Περίληψης Αρχείου" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Σχετικά" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Για περισσότερες αναλυτικές οδηγίες, διαβάστε το %sεγχειρίδιο%s ." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Ζωντανό Stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Μοιραστείτε" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Επιλέξτε stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Προσθήκη αυτής της εκπομπής " - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Ενημέρωση εκπομπής" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Τι" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Πότε" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Είσοδος Live Stream " - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Ποιός" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Στυλ" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Έναρξη" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Τίτλος" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Διάρκεια" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Είδος" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Εταιρεία" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Προηγούμενο" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Επόμενο" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Πηγή Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Ακούστε!" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Έξοδος" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Λίστες αναπαραγωγής" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Xρήστες" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Κατάσταση" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Ιστορικό Playout" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Ιστορικό Template" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Στατιστικές Ακροατών" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Βοήθεια" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Έναρξη" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Εγχειρίδιο Χρήστη" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Η σελίδα δεν βρέθηκε!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Η σελίδα που ψάχνατε δεν υπάρχει!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Αναπαραγωγή ήχου" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Αναπαραγωγή" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Παύση" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Ρύθμιση Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Ρύθμιση Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Δεν έχετε άδεια για αποσύνδεση πηγής." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Δεν έχετε άδεια για αλλαγή πηγής." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream χωρίς Τίτλο" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Το Webstream αποθηκεύτηκε." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Άκυρες μορφές αξίας." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Ο χρήστης προστέθηκε επιτυχώς!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Προεπισκόπηση" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Επιλέξτε cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Αφαίρεση cursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Διαγραφή" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "η εκπομπή δεν υπάρχει" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Οι προτιμήσεις ενημερώθηκαν." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Η Ρύθμιση Stream Ενημερώθηκε." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "η διαδρομή πρέπει να καθοριστεί" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Πρόβλημα με Liquidsoap ..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s δεν βρέθηκε" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Κάτι πήγε στραβά." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Προσθήκη στη λίστα αναπαραγωγής" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Προσθήκη στο Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Λήψη" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Αντιγραφή Λίστας Αναπαραγωγής" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Καμία διαθέσιμη δράση" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Αντιγραφή από %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα" -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτό το βοήθημα. " -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν πέρασε." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Λανθασμένο αίτημα. Η παράμετρος «κατάσταση» δεν είναι έγκυρη" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Δεν έχετε άδεια για αποσύνδεση πηγής." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Δεν υπάρχει καμία πηγή που είναι συνδεδεμένη σε αυτή την είσοδο." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Δεν έχετε άδεια για αλλαγή πηγής." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Βλέπετε μια παλαιότερη έκδοση του %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)." +msgid "%s not found" +msgstr "%s δεν βρέθηκε" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Κάτι πήγε στραβά." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Προεπισκόπηση" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Λίστα Αναπαραγωγής χωρίς Τίτλο" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Προσθήκη στη λίστα αναπαραγωγής" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Smart Block χωρίς Τίτλο" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Προσθήκη στο Smart Block" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Άγνωστη λίστα αναπαραγωγής" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Διαγραφή" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Λήψη" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Αντιγραφή Λίστας Αναπαραγωγής" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Καμία διαθέσιμη δράση" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Δεν έχετε άδεια διαγραφής των επιλεγμένων στοιχείων." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Αντιγραφή από %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Παρακαλούμε σιγουρευτείτε ότι ο χρήστης/κωδικός πρόσβασης διαχειριστή είναι σωστός στη σελίδα Σύστημα>Streams." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Αναπαραγωγή ήχου" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Εγγραφή" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Κύριο Stream" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Live Stream" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Τίποτα δεν έχει προγραμματιστεί" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Τρέχουσα Εκπομπή:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Τρέχουσα" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Χρησιμοποιείτε την τελευταία έκδοση" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Νέα έκδοση διαθέσιμη: " -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Προσθήκη στην τρέχουσα λίστα αναπαραγωγής" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Προσθήκη στο τρέχον smart block" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Προσθήκη 1 Στοιχείου" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Προσθήκη %s στοιχείου/ων" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια στα smart blocks." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Μπορείτε να προσθέσετε μόνο κομμάτια, smart blocks και webstreams σε λίστες αναπαραγωγής." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Παρακαλούμε επιλέξτε μια θέση δρομέα στο χρονοδιάγραμμα." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Προσθήκη" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Επεξεργασία" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Αφαίρεση" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Επεξεργασία Μεταδεδομένων" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Προσθήκη στην επιλεγμένη εκπομπή" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Επιλογή" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Επιλέξτε αυτή τη σελίδα" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Καταργήστε αυτήν την σελίδα" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Κατάργηση όλων" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο/α;" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Προγραμματισμένο" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Τίτλος" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Δημιουργός" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Ρυθμός Bit:" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Συνθέτης" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Ενορχήστρωση" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Κωδικοποιήθηκε από" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Είδος" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Εταιρεία" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Γλώσσα" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Τελευταία τροποποίηση" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Τελευταία αναπαραγωγή" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Διάρκεια" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Μίμος" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Διάθεση" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Ιδιοκτήτης" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Κέρδος Επανάληψης" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Ρυθμός δειγματοληψίας" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Αριθμός Κομματιού" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Φορτώθηκε" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Ιστοσελίδα" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Έτος" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Φόρτωση..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Όλα" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Αρχεία" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Λίστες αναπαραγωγής" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web Streams" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Άγνωστος τύπος: " -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο στοιχείο;" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Ανέβασμα σε εξέλιξη..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Ανάκτηση δεδομένων από τον διακομιστή..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Κωδικός σφάλματος: " -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Μήνυμα σφάλματος: " -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Το input πρέπει να είναι θετικός αριθμός" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Το input πρέπει να είναι αριθμός" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Το input πρέπει να είναι υπό μορφής: εεεε-μμ-ηη" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Το input πρέπει να είναι υπό μορφής: ωω: λλ: ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Προς το παρόν ανεβάζετε αρχεία. %sΠηγαίνοντας σε μια άλλη οθόνη θα ακυρώσετε τη διαδικασία του ανεβάσματος.%sΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Άνοιγμα Δημιουργού Πολυμέσων" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "παρακαλούμε εισάγετε τιμή ώρας '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Ο περιηγητής ιστού σας δεν υποστηρίζει την αναπαραγωγή αρχείων αυτού του τύπου: " -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Αδύνατη η προεπισκόπιση του δυναμικού block" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Όριο για: " -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Οι λίστες αναπαραγωγής αποθηκεύτηκαν" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Ανασχηματισμός λίστας αναπαραγωγής" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "To Airtime είναι αβέβαιο για την κατάσταση αυτού του αρχείου. Αυτό μπορεί να συμβεί όταν το αρχείο είναι σε μια απομακρυσμένη μονάδα δίσκου που είναι απροσπέλαστη ή το αρχείο είναι σε ευρετήριο που δεν «προβάλλεται» πια." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Καταμέτρηση Ακροατών για %s : %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Υπενθύμιση σε 1 εβδομάδα" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Καμία υπενθύμιση" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Ναι, βοηθώ το Airtime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Η εικόνα πρέπει να είναι jpg, jpeg, png ή gif " -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Ένα στατικό smart block θα αποθηκεύσει τα κριτήρια και θα δημιουργήσει αμέσως το περιεχόμενο του block. Αυτό σας επιτρέπει να το επεξεργαστείτε και να το προβάλεται στη Βιβλιοθήκη πριν το προσθέσετε σε μια εκπομπή." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Ένα στατικό smart block θα αποθηκεύσει μόνο τα κριτήρια. Το περιεχόμενο του block θα δημιουργηθεί κατά την προσθήκη του σε μια εκπομπή. Δεν θα μπορείτε να δείτε και να επεξεργαστείτε το περιεχόμενο στη Βιβλιοθήκη." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart block shuffled" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Το Smart block δημιουργήθηκε και τα κριτήρια αποθηκεύτηκαν" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Το Smart block αποθηκεύτηκε" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Επεξεργασία..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Επιλέξτε τροποποιητή" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "περιέχει" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "δεν περιέχει" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "είναι" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "δεν είναι" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "ξεκινά με" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "τελειώνει με" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "είναι μεγαλύτερος από" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "είναι μικρότερος από" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "είναι στην κλίμακα" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Δημιουργία" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Επιλογή Φακέλου Αποθήκευσης" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Επιλογή Φακέλου για Προβολή" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2497,2855 +1606,2301 @@ msgstr "" "Είστε βέβαιοι ότι θέλετε να αλλάξετε το φάκελο αποθήκευσης;\n" "Αυτό θα αφαιρέσει τα αρχεία από τη βιβλιοθήκη του Airtime!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Διαχείριση Φακέλων Πολυμέσων" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε το φάκελο που προβάλλεται;" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Αυτή η διαδρομή δεν είναι προς το παρόν προσβάσιμη." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Κάποιοι τύποι stream απαιτούν επιπλέον ρυθμίσεις. Λεπτομέρειες για την ενεργοποίηση %sAAC+ Support%s ή %sOpus Support%s παρέχονται." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Συνδέθηκε με τον διακομιστή streaming " -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Το stream είναι απενεργοποιημένο" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Λήψη πληροφοριών από το διακομιστή..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Αδύνατη η σύνδεση με τον διακομιστή streaming " -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Τσεκάρετε αυτή την επιλογή για να ενεργοποιήσετε τα μεταδεδομένα για OGG streams (τα stream μεταδεδομένα είναι ο τίτλος του κομματιού και του καλλιτέχνη, που εμφανίζονται σε ένα audio player). VLC και mplayer προκαλούν βλάβες κατά την αναπαραγωγή ενός OGG / Vorbis stream, το οποίο έχει ενεργοποιημένες τις πληροφορίες μεταδεδομένων: θα αποσυνδέονται από το stream μετά από κάθε κομμάτι. Εάν χρησιμοποιείτε ένα OGG stream και οι ακροατές σας δεν απαιτούν υποστήριξη για αυτές τις συσκευές αναπαραγωγής ήχου, τότε μπορείτε να ενεργοποιήσετε αυτή την επιλογή." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Επιλέξτε αυτό το πλαίσιο για να σβήσει αυτόματα η Κύρια/Εμφάνιση πηγής κατά την αποσύνδεση πηγής." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Επιλέξτε αυτό το πλαίσιο για να ενεργοποιηθεί αυτόματα η η Κύρια/Εμφάνιση πηγής κατά την σύνδεση πηγής." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Εάν ο διακομιστής Icecast περιμένει ένα όνομα χρήστη από την «πηγή», αυτό το πεδίο μπορεί να μείνει κενό." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Εάν ο live streaming πελάτη σας δεν ζητά ένα όνομα χρήστη, το πεδίο αυτό θα πρέπει να είναι η «πηγή»." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Αυτό είναι το Icecast/SHOUTcast όνομα χρήστη και ο κωδικός πρόσβασης διαχειριστή για τις στατιστικές ακροατών." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Προειδοποίηση: Δεν μπορείτε να κάνετε αλλαγές κατά την διάρκεια της εκπομπής " -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Δεν βρέθηκαν αποτελέσματα" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Αυτό ακολουθεί το ίδιο πρότυπο ασφαλείας για τις εκπομπές: μόνο οι χρήστες της συγκεκριμένης εκπομπής μπορούν να συνδεθούν." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Καθορίστε την προσαρμόσιμη πιστοποίηση, η οποία θα λειτουργήσει μόνο για αυτή την εκπομπή." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Η εκπομπή δεν υπάρχει πια!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Προειδοποίηση: οι εκπομπές δεν μπορούν να συνδεθούν εκ νέου" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Κατά τη διασύνδεση επαναλαμβανόμενων εκπομπών, όλα τα προγραμματισμένα στοιχεία πολυμέσων κάθε εκπομπής θα προγραμματιστούν σε όλες τις επαναλαμβανόμενες εκπομπές" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Η ζώνη ώρας είναι ρυθμισμένη ανάλογα με τη τοποθεσία του σταθμού. Οι εκμπομπές θα μεταδίδονται στην τοπική ώρα, ρυθμισμένη από το Interface Ζώνης ώρας στις ρυθμίσεις χρήστη " -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Εκπομπή" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Η εκπομπή είναι άδεια" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1λ" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5λ" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10λ" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15λ" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30λ" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60λ" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Ανάκτηση δεδομένων από το διακομιστή..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Αυτή η εκπομπή δεν έχει προγραμματισμένο περιεχόμενο." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Η εκπομπή δεν εντελώς γεμάτη με περιεχόμενο " -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Ιανουάριος" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Φεβρουάριος" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Μάρτιος" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Απρίλης" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Μάιος" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Ιούνιος" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Ιούλιος" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Αύγουστος" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Σεπτέμβριος" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Οκτώβριος" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Νοέμβριος" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Δεκέμβριος" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Ιαν" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Φεβ" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Μαρ" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Απρ" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Ιουν" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Ιουλ" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Αυγ" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Σεπ" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Οκτ" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Νοε" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Δεκ" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Κυριακή" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Δευτέρα" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Τρίτη" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Τετάρτη" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Πέμπτη" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Παρασκευή" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Σάββατο" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Κυρ" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Δευ" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Τρι" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Τετ" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Πεμ" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Παρ" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Σαβ" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Εκπομπές μεγαλύτερες από την προγραμματισμένη διάρκειά τους θα διακόπτονται από την επόμενη εκπομπή." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Ακύρωση Τρέχουσας Εκπομπής;" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Πάυση ηχογράφησης τρέχουσας εκπομπής;" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Οκ" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Περιεχόμενα Εκπομπής" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Αφαίρεση όλου του περιεχομένου;" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Διαγραφή επιλεγμένου στοιχείου/ων;" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Έναρξη" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Τέλος" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Διάρκεια" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Η εκπομπή είναι άδεια" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Ηχογράφηση Από Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Προεπισκόπηση κομματιού" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Δεν είναι δυνατός ο προγραμματισμός εκτός εκπομπής." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Μετακίνηση 1 Στοιχείου" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Μετακίνηση Στοιχείων %s" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Αποθήκευση" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Ακύρωση" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Επεξεργαστής Fade" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Επεξεργαστής Cue" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Τα χαρακτηριστικά της κυμματοειδούς μορφής είναι διαθέσιμα σε πρόγραμμα πλοήγησης που υποστηρίζει Web Audio API" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Επιλογή όλων" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Καμία Επιλογή" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Αφαίρεση επιλεγμένων προγραμματισμένων στοιχείων " -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Μετάβαση στο τρέχον κομμάτι " -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Ακύρωση τρέχουσας εκπομπής" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Άνοιγμα βιβλιοθήκης για προσθήκη ή αφαίρεση περιεχομένου" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Προσθήκη / Αφαίρεση Περιεχομένου" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "σε χρήση" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Δίσκος" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Κοιτάξτε σε" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Άνοιγμα" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Διαχειριστής" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Διευθυντής Προγράμματος" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Επισκέπτης" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Οι επισκέπτες μπορούν να κάνουν τα παρακάτω" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Προβολή Προγράμματος" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Προβολή περιεχομένου εκπομπής" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "Οι DJ μπορούν να κάνουν τα παρακάτω" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Διαχείριση ανατεθημένου περιεχομένου εκπομπής" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Εισαγωγή αρχείων πολυμέσων" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Δημιουργία λιστών αναπαραγωγής, smart blocks, και webstreams " -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Διαχείριση δικού τους περιεχομένου βιβλιοθήκης" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Προβολή και διαχείριση περιεχομένου εκπομπής" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Πρόγραμμα εκπομπών" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Διαχείριση όλου του περιεχομένου βιβλιοθήκης" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "ΟΙ Διαχειριστές μπορούν να κάνουν τα παρακάτω:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Διαχείριση προτιμήσεων" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Διαχείριση Χρηστών" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Διαχείριση προβεβλημένων φακέλων " -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Αποστολή Σχολίων Υποστήριξης" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Προβολή κατάστασης συστήματος" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Πρόσβαση στην ιστορία playout" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Προβολή στατιστικών των ακροατών" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Εμφάνιση / απόκρυψη στηλών" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Από {από} σε {σε}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "Kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "εεεε-μμ-ηη" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "ωω:λλ:δδ.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Κυ" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Δε" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Τρ" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Τε" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Πε" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Πα" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Σα" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Κλείσιμο" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Ώρα" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Λεπτό" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Ολοκληρώθηκε" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Επιλογή αρχείων" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Προσθέστε αρχεία στην ουρά ανεβάσματος και κάντε κλίκ στο κουμπί έναρξης" -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Προσθήκη Αρχείων" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Στάση Ανεβάσματος" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Έναρξη ανεβάσματος" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Προσθήκη αρχείων" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Ανέβηκαν %d/%d αρχεία" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Σύρετε αρχεία εδώ." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Σφάλμα επέκτασης αρχείου." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Σφάλμα μεγέθους αρχείου." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Σφάλμα μέτρησης αρχείων." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Σφάλμα αρχικοποίησης." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "Σφάλμα HTTP." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Σφάλμα ασφάλειας." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Γενικό σφάλμα." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "Σφάλμα IO" -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Αρχείο: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d αρχεία σε αναμονή" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Αρχείο: %f, μέγεθος: %s, μέγιστο μέγεθος αρχείου: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Το URL είτε είναι λάθος ή δεν υφίσταται" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Σφάλμα: Πολύ μεγάλο αρχείο: " -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Σφάλμα: Μη έγκυρη προέκταση αρχείου: " -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Ως Προεπιλογή" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Δημιουργία Εισόδου" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Επεξεργασία Ιστορικού" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Καμία Εκπομπή" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "Αντιγράφηκαν %s σειρές%s στο πρόχειρο" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sΕκτύπωση προβολής%sΠαρακαλούμε να χρησιμοποιείσετε την λειτουργία εκτύπωσης του περιηγητή σας για να τυπώσετε τον πίνακα. Όταν τελειώσετε πατήστε escape" -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Περιγραφή" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Ενεργοποιημένο" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Βλέπετε μια παλαιότερη έκδοση του %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Λίστα Αναπαραγωγής χωρίς Τίτλο" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Smart Block χωρίς Τίτλο" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Άγνωστη λίστα αναπαραγωγής" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Οι προτιμήσεις ενημερώθηκαν." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Η Ρύθμιση Stream Ενημερώθηκε." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "η διαδρομή πρέπει να καθοριστεί" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Πρόβλημα με Liquidsoap ..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Αναμετάδοση της εκπομπής %s από %s σε %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Επιλέξτε cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Αφαίρεση cursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "η εκπομπή δεν υπάρχει" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Το αρχείο δεν υπάρχει" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων " - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Ο χρήστης προστέθηκε επιτυχώς!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Επεξεργασία Εκπομπής" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Webstream χωρίς Τίτλο" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Το Webstream αποθηκεύτηκε." -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Άκυρες μορφές αξίας." -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Δεν έχετε δικαίωμα πρόσβασης" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Εισαγωγή άκυρου χαρακτήρα" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Η μέρα πρέπει να προσδιοριστεί" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Η ώρα πρέπει να προσδιοριστεί" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Κομμάτι" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Ώρα Έναρξης" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Ώρα Τέλους" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Παίχτηκε" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Επιλέξτε κριτήρια" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Ρυθμός Δειγματοληψίας (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "ώρες" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "λεπτά" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "στοιχεία" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Δυναμικό" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Στατικό" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Περιεχόμενο λίστας Shuffle " - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Η τιμή πρέπει να είναι αριθμός" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Η αξία δεν μπορεί να είναι κενή" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Αριθμός ISRC:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Εισαγωγή Φακέλου:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Παροβεβλημμένοι Φάκελοι:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Μη έγκυρο Ευρετήριο" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Σύνδεσμος" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Τύπος Επανάληψης:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "εβδομαδιαία" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "κάθε 2 εβδομάδες" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "κάθε 3 εβδομάδες" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "κάθε 4 εβδομάδες" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "μηνιαία" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Επιλέξτε Ημέρες:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Επανάληψη από:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "ημέρα του μήνα" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "ημέρα της εβδομάδας" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Ημερομηνία Λήξης:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Χωρίς Τέλος;" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Επιλέξτε ημέρα επανάληψης" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Ζώνη Ώρας" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Επαναλήψεις;" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Δεν μπορεί να έχει διάρκεια < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Όνομα Χρήστη:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Κωδικός πρόσβασης:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Επαλήθευση κωδικού πρόσβασης" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Όνομα:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Επώνυμο:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Κινητό Τηλέφωνο:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Τύπος Χρήστη:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Το όνομα εισόδου δεν είναι μοναδικό." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Προσαρμοσμένο Όνομα Χρήστη" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Ηχογράφηση από Line In;" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Ζώνη Ώρας Σταθμού" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Αναμετάδοση;" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "ημέρες" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Σύνδεσμος" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Τύπος Επανάληψης:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Ημερομηνία Έναρξης:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "εβδομαδιαία" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Εισαγωγή άκυρου χαρακτήρα" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "κάθε 2 εβδομάδες" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Αναζήτηση Χρηστών:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "κάθε 3 εβδομάδες" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "κάθε 4 εβδομάδες" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "μηνιαία" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Όλες οι Εκπομπές μου:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Επιλέξτε Ημέρες:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Επανάληψη από:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "ημέρα του μήνα" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "ημέρα της εβδομάδας" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Ημερομηνία Λήξης:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Χωρίς Τέλος;" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Επιλέξτε ημέρα επανάληψης" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Χρώμα Φόντου:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Χρώμα Κειμένου:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Η μέρα πρέπει να προσδιοριστεί" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Όνομα:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Η ώρα πρέπει να προσδιοριστεί" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Εκπομπή χωρίς Τίτλο" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "Διεύθυνση URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Είδος:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Περιγραφή:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας 'ΩΩ:λλ'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Διάρκεια:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Ζώνη Ώρας" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Επαναλήψεις;" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Δεν είναι δυνατή η δημιουργία εκπομπής στο παρελθόν" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Δεν μπορεί να έχει διάρκεια < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Αναζήτηση Χρηστών:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Όνομα Χρήστη:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Κωδικός πρόσβασης:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Επαλήθευση κωδικού πρόσβασης" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Όνομα:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Επώνυμο:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Κινητό Τηλέφωνο:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Τύπος Χρήστη:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Το όνομα εισόδου δεν είναι μοναδικό." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Ημερομηνία Έναρξης:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Τίτλος:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Δημιουργός:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Έτος" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Δισκογραφική:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Συνθέτης:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Μαέστρος:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Διάθεση:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "Αριθμός ISRC:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Ιστοσελίδα:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Γλώσσα:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Ώρα Έναρξης" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Ώρα Τέλους" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Interface Ζώνης ώρας:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Όνομα Σταθμού" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Λογότυπο Σταθμού:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Προεπιλεγμένη Διάρκεια Crossfade (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Προεπιλεγμένο Fade In (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Προεπιλεγμένο Fade Out (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Ζώνη Ώρας Σταθμού" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Η Εβδομάδα αρχίζει " -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Ηχογράφηση από Line In;" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Αναμετάδοση;" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Επαναφορά κωδικού πρόσβασης" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Επιτρέπονται μόνο αριθμοί." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Σύνδεση" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Κωδικός πρόσβασης" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Όνομα Χρήστη" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Επαναφορά κωδικού πρόσβασης" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "ημέρες" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Ενεργοποιημένο" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Τύπος Stream:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Τύπος Υπηρεσίας:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Κανάλια" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Διακομιστής" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Θύρα" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "Διεύθυνση URL:" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Σημείο Προσάρτησης" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Διαχειριστής Χρήστης" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Κωδικός πρόσβασης Διαχειριστή" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Ο διακομιστής δεν μπορεί να είναι κενός." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Το Port δεν μπορεί να είναι κενό." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Ζώνης ώρας:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Αναπαραγωγή σε Εξέλιξη" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Όλες οι Εκπομπές μου:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες " +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες " +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Επιλέξτε κριτήρια" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Ρυθμός Δειγματοληψίας (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "ώρες" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "λεπτά" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "στοιχεία" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Δυναμικό" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Στατικό" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Περιεχόμενο λίστας Shuffle " + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Η τιμή πρέπει να είναι αριθμός" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Η αξία δεν μπορεί να είναι κενή" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Μεταδεδομένα Icecast Vorbis " -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Stream Label:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Καλλιτέχνης - Τίτλος" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Εκπομπή - Καλλιτέχνης - Τίτλος" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Όνομα Σταθμού - Όνομα Εκπομπής" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Μεταδεδομένα Off Air" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Ενεργοποίηση Επανάληψη Κέρδους" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Τροποποιητής Επανάληψης Κέρδους" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Το έτος %s πρέπει να είναι εντός του εύρους 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Ενεργοποιημένο" -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Τύπος Stream:" -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Ρυθμός Δεδομένων:" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Τύπος Υπηρεσίας:" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Κανάλια" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Διακομιστής" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Θύρα" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "Διεύθυνση URL:" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Ονομασία" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Σημείο Προσάρτησης" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Διαχειριστής Χρήστης" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Κωδικός πρόσβασης Διαχειριστή" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Ο διακομιστής δεν μπορεί να είναι κενός." -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Το Port δεν μπορεί να είναι κενό." -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast." -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Εισαγωγή Φακέλου:" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Παροβεβλημμένοι Φάκελοι:" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Μη έγκυρο Ευρετήριο" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες " -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες " -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in και cue out είναι μηδέν." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Το cue out δεν μπορεί να είναι μικρότερο από το cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "Το URL θα πρέπει να είναι υπό μορφής \"http://domain \"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες " - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Δεν βρέθηκε τύπος MIME για webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Το όνομα του webstream δεν μπορεί να είναι κενό" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF " - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Άγνωστος τύπος stream: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Αναμετάδοση του %s από %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Επιλέξτε Χώρα" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη." - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s.." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Ένα επιλεγμένο αρχείο δεν υπάρχει!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s έχει ήδη προβληθεί." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s περιέχει ένθετο ευρετήριο προβεβλημένων: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s βρίσκεται σε υποκατηγορία υπάρχωντος ευρετηρίου προβεβλημμένων: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s μη έγκυρο ευρετήριο." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s δεν υπάρχει στη λίστα προβεβλημένων." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5353,7 +3908,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5361,7 +3916,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5370,20 +3925,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in και cue out είναι μηδέν." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Το cue out δεν μπορεί να είναι μεγαλύτερο από το μήκος του αρχείου." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Το cue in δεν μπορεί να είναι μεγαλύτερης διάρκειας από το cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Το cue out δεν μπορεί να είναι μικρότερο από το cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s έχει ήδη προβληθεί." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s περιέχει ένθετο ευρετήριο προβεβλημένων: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s βρίσκεται σε υποκατηγορία υπάρχωντος ευρετηρίου προβεβλημμένων: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s μη έγκυρο ευρετήριο." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s έχει ήδη οριστεί ως το τρέχον ευρετήριο αποθήκευσης ή βρίσκεται στη λίστα προβεβλημένων φακέλων." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s δεν υπάρχει στη λίστα προβεβλημένων." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Επιλέξτε Χώρα" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Η μετακίνηση στοιχείων εκτός συνδεδεμένων εκπομπών είναι αδύνατη." + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Το πρόγραμμα που βλέπετε δεν είναι έγκυρο! (αναντιστοιχία προγράμματος)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο! (αναντιστοιχία παραδείγματος)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Το πρόγραμμα που βλέπετε δεν είναι ενημερωμένο!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Δεν έχετε δικαίωμα προγραμματισμού εκπομπής%s.." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Δεν μπορείτε να προσθεσετε αρχεία σε ηχογραφημένες εκπομπές." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Η εκπομπή %s έχει τελειώσει και δεν μπορεί να προγραμματιστεί." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Η εκπομπή %s έχει ενημερωθεί πρόσφατα!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Ένα επιλεγμένο αρχείο δεν υπάρχει!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Η μέγιστη διάρκει εκπομπών είναι 24 ώρες." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5391,138 +4064,223 @@ msgstr "" "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτώμενων εκπομπών.\n" " Σημείωση: Η αλλαγή μεγέθους μιας εκπομπής επηρεάζει όλες τις επαναλήψεις της." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Αναμετάδοση του %s από %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Το μήκος πρέπει να είναι μεγαλύτερο από 0 λεπτά" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "Το URL θα πρέπει να είναι υπό μορφής \"http://domain \"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "Το URL πρέπει να αποτελέιται από μέχρι και 512 χαρακτήρες " + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Δεν βρέθηκε τύπος MIME για webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Το όνομα του webstream δεν μπορεί να είναι κενό" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής XSPF " + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Αδυναμία ανάλυσης λίστας αναπαραγωγής PLS" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Δεν ήταν δυνατή η ανάλυση της λίστας αναπαραγωγής M3U" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Μη έγκυρο webstream - Αυτό φαίνεται να αποτελεί αρχείο λήψης." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Άγνωστος τύπος stream: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Το αρχείο δεν υπάρχει" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων " + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Xρήστες" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Επεξεργασία Εκπομπής" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Ιστορικό Template" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Δεν έχετε δικαίωμα πρόσβασης" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Στατιστικές Ακροατών" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Κομμάτι" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Παίχτηκε" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Έναρξη" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Εγχειρίδιο Χρήστη" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Η επιθυμητή διάρκεια του block δεν θα επιτευχθεί αν το Airtime δεν μπορέσει να βρεί αρκετά μοναδικά κομμάτια που να ταιριάζουν στα κριτήριά σας. Ενεργοποιήστε αυτή την επιλογή αν θέλετε να επιτρέψετε την πολλαπλή προσθήκη κομματιών στο smart block." +#~ msgid " to " +#~ msgstr " να " -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Αν το Airtime είναι πίσω από ένα τείχος προστασίας ή router, ίσως χρειαστεί να ρυθμίσετε την προώθηση port και οι πληροφορίες πεδίου θα είναι λανθασμένες. Σε αυτή την περίπτωση θα πρέπει να ενημερώσετε αυτό το πεδίο, ώστε να δείχνει το σωστό host/port/mount που χρειάζονται οι DJ σας για να συνδεθούν. Το επιτρεπόμενο εύρος είναι μεταξύ 1024 και 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Για να προωθήσετε τον σταθμό σας, η 'Αποστολή σχολίων υποστήριξης» πρέπει να είναι ενεργοποιημένη)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Για περισσότερες λεπτομέρειες, παρακαλούμε διαβάστε το %sAirtime Εγχειρίδιο%s" +#~ msgid "(Required)" +#~ msgstr "(Απαιτείται)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Οι Μάνατζερ Προγράμματος μπορούν να κάνουν τα παρακάτω:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Ιστοσελίδα του Ραδιοφωνικού σταθμού)" -#~ msgid "Support setting updated." -#~ msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Μόνο για σκοπούς επαλήθευσης, δεν θα δημοσιευθεί)" -#~ msgid "Support Feedback" -#~ msgstr "Σχόλια Υποστήριξης" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(ωω:λλ:δδ.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα." +#~ msgid "(ss.t)" +#~ msgstr "(Ss.t)" -#~ msgid "Phone:" -#~ msgstr "Τηλέφωνο:" +#~ msgid "About" +#~ msgstr "Σχετικά" -#~ msgid "Station Web Site:" -#~ msgstr "Ιστοσελίδα Σταθμού:" +#~ msgid "Add New Field" +#~ msgstr "Προσθήκη Νέου Πεδίου" -#~ msgid "Country:" -#~ msgstr "Χώρα" +#~ msgid "Add more elements" +#~ msgstr "Προσθήκη περισσότερων στοιχείων" -#~ msgid "City:" -#~ msgstr "Πόλη" +#~ msgid "Add this show" +#~ msgstr "Προσθήκη αυτής της εκπομπής " -#~ msgid "Station Description:" -#~ msgstr "Περιγραφή Σταθμού:" +#~ msgid "Additional Options" +#~ msgstr "Πρόσθετες επιλογές" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων." - -#~ msgid "Default License:" -#~ msgstr "Προεπιλεγμένη Άδεια :" +#~ msgid "Advanced Search Options" +#~ msgstr "Προηγμένες Επιλογές Αναζήτησης" #~ msgid "All rights are reserved" #~ msgstr "Διατήρηση όλων των δικαιωμάτων" -#~ msgid "The work is in the public domain" -#~ msgstr "Εργασία δημόσιας χρήσης" +#~ msgid "Audio Track" +#~ msgstr "Κομμάτι Ήχου" + +#~ msgid "Choose Days:" +#~ msgstr "Επιλέξτε Ημέρες:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Επιλογή Παρουσίας Εκπομπής" + +#~ msgid "Choose folder" +#~ msgstr "Επιλέξτε φάκελο" + +#~ msgid "City:" +#~ msgstr "Πόλη" + +#~ msgid "Clear" +#~ msgstr "Εκκαθάριση" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Το περιεχόμενο συνδεδεμένων εκπομπών πρέπει να να προγραμματιστεί πριν ή μετά την αναμετάδοσή τους" + +#~ msgid "Country:" +#~ msgstr "Χώρα" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Δημιουργία Αρχείου Περίληψης Template " + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Δημιουργία Template Φόρμας Σύνδεσης" #~ msgid "Creative Commons Attribution" #~ msgstr "Απόδοση Creative Commons" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Απόδοση Creative Commons Όχι Παράγωγα Έργα" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Απόδοση Creative Commons Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Όχι Παράγωγα Έργα" @@ -5530,38 +4288,370 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Share Alike" -#~ msgid "Register Airtime" -#~ msgstr "Εγγραφή σε Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Απόδοση Creative Commons Share Alike" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Μόνο για σκοπούς επαλήθευσης, δεν θα δημοσιευθεί)" +#~ msgid "Cue In: " +#~ msgstr "Cue In: " -#~ msgid "Show me what I am sending " -#~ msgstr "Δείξε μου τι στέλνω " +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " -#~ msgid "Terms and Conditions" -#~ msgstr "Όροι και Προϋποθέσεις" +#~ msgid "Current Import Folder:" +#~ msgstr "Τρέχων Φάκελος Εισαγωγής:" -#~ msgid "files meet the criteria" -#~ msgstr "τα αρχεία πληρούν τα κριτήρια" +#~ msgid "Cursor" +#~ msgstr "Cursor" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Για να προωθήσετε τον σταθμό σας, η 'Αποστολή σχολίων υποστήριξης» πρέπει να είναι ενεργοποιημένη)." +#~ msgid "Default Length:" +#~ msgstr "Προεπιλεγμένη Διάρκεια:" -#~ msgid "Your trial expires in" -#~ msgstr "Το δοκιμαστικό λήγει σε" +#~ msgid "Default License:" +#~ msgstr "Προεπιλεγμένη Άδεια :" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Αυτή η έκδοση θα παρωχηθεί σύντομα." +#~ msgid "Disk Space" +#~ msgstr "Χώρος δίσκου" -#~ msgid "This version is no longer supported." -#~ msgstr "Αυτή η έκδοση δεν υποστηρίζεται πλέον." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Δυναμικά Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Κριτήρια Δυναμικών Smart Block: " + +#~ msgid "Empty playlist content" +#~ msgstr "Άδειασμα περιεχομένου λίστας αναπαραγωγής" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Επέκταση Δυναμικών Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Επέκταση Στατικών Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "Διαδρομή Αρχείου" + +#~ msgid "File Summary" +#~ msgstr "Περίληψη Αρχείων" + +#~ msgid "File Summary Templates" +#~ msgstr "Template Περίληψης Αρχείου" + +#~ msgid "File import in progress..." +#~ msgstr "Εισαγωγή αρχείου σε εξέλιξη..." + +#~ msgid "Filter History" +#~ msgstr "Φιλτράρισμα Ιστορίας" + +#~ msgid "Find" +#~ msgstr "Εύρεση" + +#~ msgid "Find Shows" +#~ msgstr "Εύρεση Εκπομπών" + +#~ msgid "First Name" +#~ msgstr "Όνομα" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Για περισσότερες αναλυτικές οδηγίες, διαβάστε το %sεγχειρίδιο%s ." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Για περισσότερες λεπτομέρειες, παρακαλούμε διαβάστε το %sAirtime Εγχειρίδιο%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Αν το Airtime είναι πίσω από ένα τείχος προστασίας ή router, ίσως χρειαστεί να ρυθμίσετε την προώθηση port και οι πληροφορίες πεδίου θα είναι λανθασμένες. Σε αυτή την περίπτωση θα πρέπει να ενημερώσετε αυτό το πεδίο, ώστε να δείχνει το σωστό host/port/mount που χρειάζονται οι DJ σας για να συνδεθούν. Το επιτρεπόμενο εύρος είναι μεταξύ 1024 και 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Αριθμός ISRC:" + +#~ msgid "Last Name" +#~ msgstr "Επώνυμο" + +#~ msgid "Length:" +#~ msgstr "Διάρκεια:" + +#~ msgid "Limit to " +#~ msgstr "Όριο για " + +#~ msgid "Listen" +#~ msgstr "Ακούστε!" + +#~ msgid "Live Stream Input" +#~ msgstr "Είσοδος Live Stream " + +#~ msgid "Live stream" +#~ msgstr "Ζωντανό Stream" + +#~ msgid "Log Sheet" +#~ msgstr "Σελίδα Σύνδεσης" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Template Φόρμας Σύνδεσης" + +#~ msgid "Logout" +#~ msgstr "Έξοδος" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Η σελίδα που ψάχνατε δεν υπάρχει!" + +#~ msgid "Manage Users" +#~ msgstr "Διαχείριση Χρηστών" + +#~ msgid "Master Source" +#~ msgstr "Κύρια Πηγή " + +#~ msgid "New File Summary Template" +#~ msgstr "Νέο Template Περίληψης Αρχείου" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Νέο Template Φόρμας Σύνδεσης" + +#~ msgid "New User" +#~ msgstr "Νέος Χρήστης" + +#~ msgid "New password" +#~ msgstr "Νέος κωδικός πρόσβασης" + +#~ msgid "Next:" +#~ msgstr "Επόμενο" + +#~ msgid "No File Summary Templates" +#~ msgstr "Κανένα Template Περίληψης Αρχείου" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Κανένα Template Φόρμας Σύνδεσης" + +#~ msgid "No open playlist" +#~ msgstr "Καμία ανοικτή λίστα αναπαραγωγής" + +#~ msgid "No webstream" +#~ msgstr "Κανένα webstream" + +#~ msgid "OK" +#~ msgstr "ΟΚ" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Αρχική Διάρκεια:" + +#~ msgid "Page not found!" +#~ msgstr "Η σελίδα δεν βρέθηκε!" + +#~ msgid "Phone:" +#~ msgstr "Τηλέφωνο:" + +#~ msgid "Play" +#~ msgstr "Αναπαραγωγή" + +#~ msgid "Playlist Contents: " +#~ msgstr "Περιεχόμενα Λίστας Αναπαραγωγής: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Crossfade λίστας αναπαραγωγής" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Παρακαλώ εισάγετε και επαληθεύστε τον νέο κωδικό πρόσβασής σας στα παρακάτω πεδία. " #~ msgid "Please upgrade to " #~ msgstr "Παρακαλούμε να αναβαθμίσετε σε " +#~ msgid "Previous:" +#~ msgstr "Προηγούμενο" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Οι Μάνατζερ Προγράμματος μπορούν να κάνουν τα παρακάτω:" + +#~ msgid "Register Airtime" +#~ msgstr "Εγγραφή σε Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Αφαίρεση προβεβλημμένου ευρετηρίου" + +#~ msgid "Repeat Days:" +#~ msgstr "Επανάληψη Ημερών:" + +#~ msgid "Sample Rate:" +#~ msgstr "Ρυθμός δειγματοληψίας:" + +#~ msgid "Save playlist" +#~ msgstr "Αποθήκευση λίστας αναπαραγωγής" + +#~ msgid "Select stream:" +#~ msgstr "Επιλέξτε stream:" + +#~ msgid "Set" +#~ msgstr "Ορισμός" + +#~ msgid "Set Cue In" +#~ msgstr "Ρύθμιση Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Ρύθμιση Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Ορισμός Προεπιλεγμένου Template " + +#~ msgid "Share" +#~ msgstr "Μοιραστείτε" + +#~ msgid "Show Source" +#~ msgstr "Εμφάνιση Πηγής " + +#~ msgid "Show Summary" +#~ msgstr "Προβολή Περίληψης" + +#~ msgid "Show Waveform" +#~ msgstr "Εμφάνιση κυμματοειδούς μορφής" + +#~ msgid "Show me what I am sending " +#~ msgstr "Δείξε μου τι στέλνω " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle λίστα αναπαραγωγής" + +#~ msgid "Source Streams" +#~ msgstr "Πηγή Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Στατικά Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Περιεχόμενα Στατικών Smart Block : " + +#~ msgid "Station Description:" +#~ msgstr "Περιγραφή Σταθμού:" + +#~ msgid "Station Web Site:" +#~ msgstr "Ιστοσελίδα Σταθμού:" + +#~ msgid "Stop" +#~ msgstr "Παύση" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Ρυθμίσεις Stream" + +#~ msgid "Stream URL:" +#~ msgstr "URL Stream:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Stream: " + +#~ msgid "Style" +#~ msgstr "Στυλ" + +#~ msgid "Support Feedback" +#~ msgstr "Σχόλια Υποστήριξης" + +#~ msgid "Support setting updated." +#~ msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε." + +#~ msgid "Terms and Conditions" +#~ msgstr "Όροι και Προϋποθέσεις" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Η επιθυμητή διάρκεια του block δεν θα επιτευχθεί αν το Airtime δεν μπορέσει να βρεί αρκετά μοναδικά κομμάτια που να ταιριάζουν στα κριτήριά σας. Ενεργοποιήστε αυτή την επιλογή αν θέλετε να επιτρέψετε την πολλαπλή προσθήκη κομματιών στο smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Η παρακάτω πληροφορία θα εμφανίζεται στις συσκευές αναπαραγωγής πολυμέσων των ακροατών σας:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Εργασία δημόσιας χρήσης" + +#~ msgid "This version is no longer supported." +#~ msgstr "Αυτή η έκδοση δεν υποστηρίζεται πλέον." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Αυτή η έκδοση θα παρωχηθεί σύντομα." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Για να παίξετε τα πολυμέσα θα πρέπει είτε να αναβαθμίστε το πρόγραμμα περιήγησηής σας σε μια πρόσφατη έκδοση ή να ενημέρώσετε το %sFlash plugin %s σας." + +#~ msgid "Track:" +#~ msgstr "Κομμάτι:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα." + +#~ msgid "Update Required" +#~ msgstr "Απαιτείται Ενημέρωση " + +#~ msgid "Update show" +#~ msgstr "Ενημέρωση εκπομπής" + +#~ msgid "User Type" +#~ msgstr "Τύπος Χρήστη" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Τι" + +#~ msgid "When" +#~ msgstr "Πότε" + +#~ msgid "Who" +#~ msgstr "Ποιός" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Δεν παρακολουθείτε κανέναν φάκελο πολυμέσων." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων." + +#~ msgid "Your trial expires in" +#~ msgstr "Το δοκιμαστικό λήγει σε" + +#~ msgid "and" +#~ msgstr "και" + +#~ msgid "dB" +#~ msgstr "βΔ" + +#~ msgid "files meet the criteria" +#~ msgstr "τα αρχεία πληρούν τα κριτήρια" + +#~ msgid "id" +#~ msgstr "ταυτότητα" + +#~ msgid "max volume" +#~ msgstr "μέγιστη ένταση" + +#~ msgid "mute" +#~ msgstr "Σίγαση" + +#~ msgid "next" +#~ msgstr "επόμενο" + +#~ msgid "or" +#~ msgstr "ή" + +#~ msgid "pause" +#~ msgstr "παύση" + +#~ msgid "play" +#~ msgstr "αναπαραγωγή" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "παρακαλούμε εισάγετε τιμή ώρας σε δευτερόλεπτα '00 (0,0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Το περιεχόμενο συνδεδεμένων εκπομπών πρέπει να να προγραμματιστεί πριν ή μετά την αναμετάδοσή τους" +#~ msgid "previous" +#~ msgstr "προηγούμενο" + +#~ msgid "stop" +#~ msgstr "στάση" + +#~ msgid "unmute" +#~ msgstr "Κατάργηση σίγασης" diff --git a/legacy/locale/en_CA/LC_MESSAGES/libretime.po b/legacy/locale/en_CA/LC_MESSAGES/libretime.po index 61cb0212b..221ef1321 100644 --- a/legacy/locale/en_CA/LC_MESSAGES/libretime.po +++ b/legacy/locale/en_CA/LC_MESSAGES/libretime.po @@ -1,5351 +1,3906 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Daniel James , 2014 # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: English (Canada) (http://www.transifex.com/sourcefabric/airtime/language/en_CA/)\n" +"Language-Team: English (Canada)\n" "Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Login" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "New password" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Please enter and confirm your new password in the fields below." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Playout History" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Log Sheet" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "File Summary" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Show Summary" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Manage Media Folders" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Stream Settings" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Save" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Required)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Additional Options" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "The following info will be displayed to listeners in their media player:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Your radio station website)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "or" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "and" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " to " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Choose Show Instance" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No Show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Find" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Choose folder" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Set" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Current Import Folder:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Add" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Remove watched directory" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "You are not watching any media folders." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Choose Days:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Remove" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Repeat Days:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Find Shows" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filter History" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Show Source" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master Source" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Manage Users" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "New User" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Username" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "First Name" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Last Name" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "User Type" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Expand Static Block" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Expand Dynamic Block" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Description:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Duration:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Shuffle playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Shuffle" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Empty playlist content" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Clear" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade out: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancel" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Save playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "No open playlist" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Show Waveform" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade in: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Original Length:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "in use" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "All" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Advanced Search Options" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Description" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Default Length:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "No webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Close" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Name" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Creator" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Language" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "File import in progress..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Title:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creator:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Track:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Length:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Sample Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Mood:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Year:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Label:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Composer:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conductor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc Number:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Language:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "File Path:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamic Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Static Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Audio Track" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Playlist Contents: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Static Smart Block Contents: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dynamic Smart Block Criteria: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Limit to " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Disk Space" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "previous" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "play" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "next" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "mute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "unmute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "max volume" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Update Required" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Creating File Summary Template" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Creating Log Sheet Template" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Add more elements" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Add New Field" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Set Default Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Log Sheet Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "New Log Sheet Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "No Log Sheet Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Set Default" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "File Summary Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "New File Summary Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "No File Summary Templates" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "About" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "For more detailed help, read the %suser manual%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Share" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Select stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Add this show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Update show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "What" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "When" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Live Stream Input" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Who" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Style" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Start" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Title" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Length" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Previous:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Next:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Source Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Listen" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Logout" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlists" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "Help" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Page not found!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Looks like the page you were looking for doesn't exist!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Play" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stop" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "You don't have permission to disconnect source." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "There is no source connected to this input." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "You don't have permission to switch source." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream saved." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Invalid form values." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User added successfully!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User updated successfully!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Preview" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Select cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Remove cursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Delete" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "show does not exist" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "path should be specified" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s not found" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Something went wrong." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Add to Playlist" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Add to Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Download" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplicate Playlist" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "No action available" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "You don't have permission to delete selected items." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "You are not allowed to access this resource." - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "You are not allowed to access this resource. " - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad request. no 'mode' parameter passed." - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad request. 'mode' parameter is invalid" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "You can only add tracks, smart blocks, and webstreams to playlists." - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "Recording:" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "Master Stream" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "Live Stream" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "Nothing Scheduled" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "Current Show:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "Current" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "You are running the latest version" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "New version available: " - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "Add to current playlist" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "Add to current smart block" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "Adding 1 Item" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "Adding %s Items" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "You can only add tracks to smart blocks." - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "Please select a cursor position on timeline." - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "Edit" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "Edit Metadata" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "Add to selected show" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "Select" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "Select this page" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "Deselect this page" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "Deselect all" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Are you sure you want to delete the selected item(s)?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "Scheduled" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "Composer" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "Conductor" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "Encoded By" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "Last Modified" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "Last Played" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "Mime" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "Mood" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "Owner" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "Track Number" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "Uploaded" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "Website" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "Year" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "Loading..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "Files" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "Web Streams" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "Unknown type: " - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "Are you sure you want to delete the selected item?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "Uploading in progress..." - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "Retrieving data from the server..." - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "Error code: " - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "Error msg: " - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "Input must be a positive number" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "Input must be a number" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Input must be in the format: yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Input must be in the format: hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "please put in a time '00:00:00 (.0)'" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "Your browser does not support playing this file type: " - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "Dynamic block is not previewable" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "Limit to: " - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "Playlist saved" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "Playlist shuffled" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Listener Count on %s: %s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Remind me in 1 week" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Remind me never" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Yes, help Airtime" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Image must be one of jpg, jpeg, png, or gif" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "Smart block generated and criteria saved" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "Smart block saved" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "Processing..." - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "Select modifier" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "contains" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "does not contain" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "is" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "is not" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "starts with" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "ends with" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "is greater than" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "is less than" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "is in the range" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "Generate" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "Choose Storage Folder" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "Choose Folder to Watch" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Are you sure you want to remove the watched folder?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "This path is currently not accessible." - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "Connected to the streaming server" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "The stream is disabled" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "Getting information from the server..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "Can not connect to the streaming server" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Check this box to automatically switch on Master/Show source upon source connection." - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "If your Icecast server expects a username of 'source', this field can be left blank." - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "If your live streaming client does not ask for a username, this field should be 'source'." - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warning: You cannot change this field while the show is currently playing" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "No result found" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "Specify custom authentication which will work only for this show." - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "The show instance doesn't exist anymore!" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warning: Shows cannot be re-linked" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "Show" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "Show is empty" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1m" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5m" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10m" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15m" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30m" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60m" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "Retrieving data from the server..." - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "This show has no scheduled content." - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "This show is not completely filled with content." - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "January" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "February" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "March" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "April" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "May" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "June" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "July" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "August" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "September" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "October" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "November" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "December" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "Jan" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "Feb" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "Mar" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "Apr" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "Jun" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "Jul" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "Aug" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "Sep" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "Oct" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "Nov" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "Dec" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "Sunday" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "Monday" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "Tuesday" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "Wednesday" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "Thursday" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "Friday" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "Saturday" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "Sun" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "Mon" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "Tue" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "Wed" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "Thu" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "Fri" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "Sat" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Shows longer than their scheduled time will be cut off by a following show." - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "Cancel Current Show?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "Stop recording current show?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "Ok" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "Contents of Show" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "Remove all content?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "Delete selected item(s)?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "End" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "Duration" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "Show Empty" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "Recording From Line In" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "Track preview" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "Cannot schedule outside a show." - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "Moving 1 Item" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "Moving %s Items" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform features are available in a browser supporting the Web Audio API" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "Select all" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "Select none" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "Remove selected scheduled items" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "Jump to the current playing track" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "Cancel current show" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "Open library to add or remove content" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "Add / Remove Content" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "Disk" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "Look in" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "Open" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "Admin" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DJ" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "Program Manager" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "Guest" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "Guests can do the following:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "View schedule" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "View show content" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "DJs can do the following:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "Manage assigned show content" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "Import media files" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Create playlists, smart blocks, and webstreams" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "Manage their own library content" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "View and manage show content" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "Schedule shows" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "Manage all library content" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "Admins can do the following:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "Manage preferences" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "Manage users" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "Manage watched folders" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "Send support feedback" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "View system status" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "Access playout history" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "View listener stats" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "Show / hide columns" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "From {from} to {to}" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "kbps" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "kHz" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "Su" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "Mo" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "Tu" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "We" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "Th" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "Fr" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "Sa" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "Hour" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "Minute" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "Done" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "Select files" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "Add files to the upload queue and click the start button." - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "Add Files" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "Stop Upload" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "Start upload" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "Add files" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Uploaded %d/%d files" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "N/A" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "Drag files here." - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "File extension error." - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "File size error." - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "File count error." - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "Init error." - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "HTTP Error." - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "Security error." - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "Generic error." - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "IO error." - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "File: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d files queued" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, size: %s, max file size: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL might be wrong or doesn't exist" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "Error: File too large: " - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "Error: Invalid file extension: " - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "Create Entry" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "Edit History Record" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copied %s row%s to the clipboard" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "Enabled" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "Disabled" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast of show %s from %s at %s" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Record file doesn't exist" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "View Recorded File Metadata" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Edit Show" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Permission denied" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Can't drag and drop repeating shows" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Can't move a past show" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Can't move show into past" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Show was deleted because recorded show does not exist!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Must wait 1 hour to rebroadcast." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Track" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Start Time" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "End Time" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Played" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Select criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "hours" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minutes" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "items" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamic" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Static" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Number:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Repeat Type:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "weekly" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "every 2 weeks" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "every 3 weeks" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "every 4 weeks" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "monthly" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Select Days:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Repeat By:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "day of the month" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "day of the week" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Date End:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "No End?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "End date must be after start date" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Please select a repeat day" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' does not fit the time format 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Timezone:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Repeats?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Cannot create show in the past" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Cannot modify start date/time of the show that is already started" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "End date/time cannot be in the past" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Cannot have duration < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Cannot have duration 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Cannot have duration greater than 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Username:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Password:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verify Password:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "First name:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Last name:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobile Phone:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "User Type:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Login name is not unique." - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom Username" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Date Start:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Invalid character entered" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Search Users:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Background Colour:" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Text Colour:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Day must be specified" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Time must be specified" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "Station Name" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: Anything larger than 600x600 will be resized." - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "Default Crossfade Duration (s):" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "Default Fade In (s):" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "Default Fade Out (s):" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset password" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "Only numbers are allowed." - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "Password" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirm new password" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Password confirmation does not match your password." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "days" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Enabled:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Channels:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin User" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Password" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server cannot be empty." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port cannot be empty." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount cannot be empty with Icecast server." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Now Playing" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwords do not match" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbis Metadata" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "Artist - Title" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "Show - Artist - Title" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "Station name - Show name" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "Enable Replay Gain" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" msgstr "The year %s must be within the range of 1753 - 9999" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" msgstr "%s-%s-%s is not a valid date" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" msgstr "%s:%s:%s is not a valid time" -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" " %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " msgstr "" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " msgstr "" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" msgstr "" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendar" -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" +#: application/configs/navigation.php:52 +msgid "Player" msgstr "" -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" +#: application/configs/navigation.php:80 +msgid "My Profile" msgstr "" -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Users" -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" +#: application/configs/navigation.php:114 +msgid "Analytics" msgstr "" -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Playout History" -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "History Templates" -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Listener Stats" -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" msgstr "" -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "Help" -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Getting Started" -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "User Manual" -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "You are not allowed to access this resource." -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "You are not allowed to access this resource. " -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in and cue out are null." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Can't set cue in to be larger than cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Can't set cue out to be greater than file length." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Can't set cue out to be smaller than cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Length needs to be greater than 0 minutes" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL should be of form \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL should be 512 characters or less" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "No MIME type found for webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Webstream name cannot be empty" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Could not parse PLS playlist" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Could not parse M3U playlist" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Invalid webstream - This appears to be a file download." - -#: legacy/application/models/Webstream.php:336 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unrecognized stream type: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast of %s from %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Select Country" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Cannot move items out of linked shows" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "The schedule you're viewing is out of date! (sched mismatch)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "The schedule you're viewing is out of date! (instance mismatch)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "The schedule you're viewing is out of date!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "You are not allowed to schedule show %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "You cannot add files to recording shows." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "The show %s is over and cannot be scheduled." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "The show %s has been previously updated!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +msgid "File does not exist in %s" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad request. no 'mode' parameter passed." + +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad request. 'mode' parameter is invalid" + +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "You don't have permission to disconnect source." + +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "There is no source connected to this input." + +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "You don't have permission to switch source." + +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "A selected File does not exist!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s is already watched." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contains nested watched directory: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s is nested within existing watched directory: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s is not a valid directory." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s is already set as the current storage dir or in the watched folders list" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s is already set as the current storage dir or in the watched folders list." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s doesn't exist in the watched list." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 +#, php-format +msgid "%s not found" +msgstr "%s not found" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Something went wrong." + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Preview" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Add to Playlist" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Add to Smart Block" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Delete" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplicate Playlist" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "No action available" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "You don't have permission to delete selected items." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Please make sure Admin User and Admin Password for the streaming server are present and correct under Stream -> Additional Options on the System -> Streams page." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Recording:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nothing Scheduled" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Current Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Current" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "You are running the latest version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "New version available: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Add to current playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Add to current smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adding 1 Item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adding %s Items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "You can only add tracks to smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "You can only add tracks, smart blocks, and webstreams to playlists." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Please select a cursor position on timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Add" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "Edit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Remove" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edit Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Add to selected show" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Select" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Select this page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deselect this page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deselect all" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Are you sure you want to delete the selected item(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Scheduled" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Title" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Creator" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "Composer" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "Conductor" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Language" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "Last Modified" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "Last Played" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Length" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "Owner" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "Track Number" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "Year" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Loading..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "All" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Files" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unknown type: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Are you sure you want to delete the selected item?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploading in progress..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Error code: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Error msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Input must be a positive number" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Input must be a number" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Input must be in the format: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Input must be in the format: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "please put in a time '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Your browser does not support playing this file type: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamic block is not previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limit to: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist saved" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist shuffled" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Listener Count on %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Remind me in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Remind me never" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Yes, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Image must be one of jpg, jpeg, png, or gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block generated and criteria saved" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block saved" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processing..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "Select modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "contains" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "does not contain" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "is not" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "starts with" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "ends with" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "is greater than" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "is less than" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "is in the range" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "Generate" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choose Storage Folder" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choose Folder to Watch" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Manage Media Folders" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Are you sure you want to remove the watched folder?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "This path is currently not accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connected to the streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "The stream is disabled" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "Getting information from the server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Can not connect to the streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Check this box to automatically switch on Master/Show source upon source connection." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "If your Icecast server expects a username of 'source', this field can be left blank." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "If your live streaming client does not ask for a username, this field should be 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warning: You cannot change this field while the show is currently playing" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "No result found" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Specify custom authentication which will work only for this show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "The show instance doesn't exist anymore!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warning: Shows cannot be re-linked" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show is empty" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "This show has no scheduled content." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "This show is not completely filled with content." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "January" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "February" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "March" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "May" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "June" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "July" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "October" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "Sunday" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "Monday" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "Tuesday" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "Wednesday" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "Thursday" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "Friday" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "Saturday" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Sun" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Tue" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Wed" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Thu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fri" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Shows longer than their scheduled time will be cut off by a following show." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancel Current Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop recording current show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contents of Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remove all content?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Delete selected item(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "End" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duration" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show Empty" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Recording From Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track preview" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Cannot schedule outside a show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moving 1 Item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moving %s Items" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Save" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancel" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform features are available in a browser supporting the Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Select all" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Select none" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remove selected scheduled items" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump to the current playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancel current show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open library to add or remove content" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Add / Remove Content" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in use" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Look in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Guest" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Guests can do the following:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "View schedule" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "View show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs can do the following:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Manage assigned show content" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media files" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Create playlists, smart blocks, and webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Manage their own library content" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "View and manage show content" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schedule shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Manage all library content" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins can do the following:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Manage preferences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Manage users" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Manage watched folders" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Send support feedback" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "View system status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Access playout history" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "View listener stats" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Show / hide columns" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "From {from} to {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Su" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Tu" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "We" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Th" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Close" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hour" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Done" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Select files" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "Add files to the upload queue and click the start button." + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Add Files" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Start upload" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "Add files" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Uploaded %d/%d files" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "Drag files here." + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "File extension error." + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "File size error." + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "File count error." + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "Init error." + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "HTTP Error." + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "Security error." + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "Generic error." + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "IO error." + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d files queued" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, size: %s, max file size: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL might be wrong or doesn't exist" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "Error: File too large: " + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "Error: Invalid file extension: " + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Set Default" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "Create Entry" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "Edit History Record" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No Show" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copied %s row%s to the clipboard" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "Enabled" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "Disabled" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Wrong username or password provided. Please try again." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "You are viewing an older version of %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "You cannot add tracks to dynamic blocks." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "You don't have permission to delete selected %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "You can only add tracks to smart block." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Untitled Playlist" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Untitled Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Unknown Playlist" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Preferences updated." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Stream Setting Updated." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "path should be specified" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem with Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast of show %s from %s at %s" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Select cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Remove cursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "show does not exist" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "User added successfully!" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "User updated successfully!" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Settings updated successfully!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Untitled Webstream" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream saved." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Invalid form values." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Invalid character entered" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Day must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Time must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Custom Username" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Custom Password" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Record from Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "days" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Repeat Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "weekly" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "every 2 weeks" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "every 3 weeks" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "every 4 weeks" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monthly" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Select Days:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repeat By:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "day of the month" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "day of the week" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date End:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "No End?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "End date must be after start date" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Please select a repeat day" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Background Colour:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Text Colour:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' does not fit the time format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Duration:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Timezone:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Repeats?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Cannot create show in the past" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Cannot modify start date/time of the show that is already started" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "End date/time cannot be in the past" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Cannot have duration < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Cannot have duration 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Cannot have duration greater than 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Search Users:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Verify Password:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "First name:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Last name:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobile Phone:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "User Type:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login name is not unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date Start:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Title:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Creator:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Year:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Composer:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Language:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Start Time" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "End Time" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Station Name" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: Anything larger than 600x600 will be resized." + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "Default Crossfade Duration (s):" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "Default Fade In (s):" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "Default Fade Out (s):" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "Only numbers are allowed." + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Login" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "Confirm new password" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "Password confirmation does not match your password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Username" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Now Playing" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "All My Shows:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Select criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hours" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "items" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamic" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Static" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbis Metadata" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "Artist - Title" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "Show - Artist - Title" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "Station name - Show name" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "Enable Replay Gain" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Enabled:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Channels:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin User" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Admin Password" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server cannot be empty." + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port cannot be empty." + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount cannot be empty with Icecast server." + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Watched Folders:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5353,7 +3908,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5361,7 +3916,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5370,20 +3925,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in and cue out are null." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Can't set cue out to be greater than file length." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Can't set cue in to be larger than cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Can't set cue out to be smaller than cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s is already watched." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contains nested watched directory: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s is nested within existing watched directory: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s is not a valid directory." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s is already set as the current storage dir or in the watched folders list" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s is already set as the current storage dir or in the watched folders list." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s doesn't exist in the watched list." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Select Country" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Cannot move items out of linked shows" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "The schedule you're viewing is out of date! (sched mismatch)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "The schedule you're viewing is out of date! (instance mismatch)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "The schedule you're viewing is out of date!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "You are not allowed to schedule show %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "You cannot add files to recording shows." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "The show %s is over and cannot be scheduled." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "The show %s has been previously updated!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "A selected File does not exist!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Shows can have a max length of 24 hours." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5391,138 +4064,223 @@ msgstr "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast of %s from %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Length needs to be greater than 0 minutes" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL should be of form \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL should be 512 characters or less" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "No MIME type found for webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Webstream name cannot be empty" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Could not parse PLS playlist" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Could not parse M3U playlist" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Invalid webstream - This appears to be a file download." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unrecognized stream type: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendar" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Users" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Edit Show" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "History Templates" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Permission denied" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Listener Stats" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Track" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Played" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Getting Started" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "User Manual" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgid " to " +#~ msgstr " to " -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" +#~ msgid "(Required)" +#~ msgstr "(Required)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Phone:" +#~ msgid "About" +#~ msgstr "About" -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" +#~ msgid "Add New Field" +#~ msgstr "Add New Field" -#~ msgid "Country:" -#~ msgstr "Country:" +#~ msgid "Add more elements" +#~ msgstr "Add more elements" -#~ msgid "City:" -#~ msgstr "City:" +#~ msgid "Add this show" +#~ msgstr "Add this show" -#~ msgid "Station Description:" -#~ msgstr "Station Description:" +#~ msgid "Additional Options" +#~ msgstr "Additional Options" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." - -#~ msgid "Default License:" -#~ msgstr "Default License:" +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" #~ msgid "All rights are reserved" #~ msgstr "All rights are reserved" -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Attribution No Derivative Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5530,38 +4288,370 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Attribution Noncommercial Share Alike" -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" +#~ msgid "Cue In: " +#~ msgstr "Cue In: " -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" +#~ msgid "Cursor" +#~ msgstr "Cursor" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgid "Default Length:" +#~ msgstr "Default Length:" -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" +#~ msgid "Default License:" +#~ msgstr "Default License:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." +#~ msgid "Disk Space" +#~ msgstr "Disk Space" -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" + +#~ msgid "Last Name" +#~ msgstr "Last Name" + +#~ msgid "Length:" +#~ msgstr "Length:" + +#~ msgid "Limit to " +#~ msgstr "Limit to " + +#~ msgid "Listen" +#~ msgstr "Listen" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." #~ msgid "Please upgrade to " #~ msgstr "Please upgrade to " +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "please put in a time in seconds '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgid "previous" +#~ msgstr "previous" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/legacy/locale/en_GB/LC_MESSAGES/libretime.po b/legacy/locale/en_GB/LC_MESSAGES/libretime.po index 08d1d0262..79a441377 100644 --- a/legacy/locale/en_GB/LC_MESSAGES/libretime.po +++ b/legacy/locale/en_GB/LC_MESSAGES/libretime.po @@ -1,5352 +1,3906 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: -# Daniel James , 2014 # Daniel James , 2014-2015 # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-07 10:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/sourcefabric/airtime/language/en_GB/)\n" +"Language-Team: English (United Kingdom)\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "Email Sent!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "Back" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Login" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "Password Reset" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "New password" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Please enter and confirm your new password in the fields below." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Playout History" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Log Sheet" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "File Summary" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Show Summary" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Manage Media Folders" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "General" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Stream Settings" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Save" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "Global" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "Output Streams" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "Dashboard" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "My Profile" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Required)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Additional Options" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "The following info will be displayed to listeners in their media player:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Your radio station website)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "TuneIn Settings" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "Dangerous Options" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "Search Criteria:" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "or" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "and" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "New Modifier" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " to " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "New Criteria" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Choose Show Instance" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No Show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Find" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Choose folder" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Set" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Current Import Folder:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Add" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "Rescan watched directory (This is useful if it is a network mount and may be out of sync with %s)" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Remove watched directory" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "You are not watching any media folders." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Choose Days:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Remove" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Repeat Days:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Find Shows" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filter History" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Show Source" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "Forgot your password?" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "Live Broadcasting" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master Source" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "Use these settings in your broadcasting software to stream live at any time." - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "Welcome to %s!" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Manage Users" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "New User" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Username" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "First Name" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Last Name" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "User Type" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "Listeners" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "Stream Data Collection Status" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Expand Static Block" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Expand Dynamic Block" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "Choose some search criteria above and click Generate to create this playlist." - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "A track list will be generated when you schedule this smart block into a show." - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "Drag tracks here from your library to add them to the playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "Editing " - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Description:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Duration:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "Toggle Details" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Shuffle playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Shuffle" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Empty playlist content" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Clear" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade out: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancel" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Save playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "No open playlist" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Show Waveform" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade in: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "Remove all content from this smart block" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "No smart block currently open" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Original Length:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "Upload" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "Drop files here or click to browse your computer." - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "in use" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "All" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "Failed" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "Pending" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "Recent Uploads" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Advanced Search Options" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Description" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Default Length:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "No webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Close" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Name" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Creator" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Language" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "File import in progress..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Title:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creator:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Track:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Length:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Sample Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Mood:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Year:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Label:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Composer:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conductor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc Number:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Language:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "File Path:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamic Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Static Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Audio Track" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Playlist Contents: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Static Smart Block Contents: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dynamic Smart Block Criteria: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Limit to " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Disk Space" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "Powered by %s" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "previous" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "play" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "next" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "mute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "unmute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "max volume" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Update Required" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Creating File Summary Template" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Creating Log Sheet Template" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Add more elements" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Add New Field" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Set Default Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "Playout History Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Log Sheet Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "New Log Sheet Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "No Log Sheet Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Set Default" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "File Summary Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "New File Summary Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "No File Summary Templates" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "About" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, the open radio software for scheduling and remote station management." - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s is distributed under the %3$s" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "Here's how you can get started using %s to automate your broadcasts: " - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "Upload audio tracks" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "Click the 'Upload' button in the left corner to upload tracks to your library." - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "Schedule a show" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "Add tracks to your show" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "Now you're good to go!" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "For more detailed help, read the %suser manual%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Share" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Select stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Add this show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Update show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "What" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "When" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Live Stream Input" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Who" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Style" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Start" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Title" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Length" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Previous:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Next:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Source Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Listen" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Logout" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "Tracks" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlists" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Webstreams" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "Weekly Schedule" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "Preview:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Embeddable code:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "Player" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "An error has occurred." - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "Access Denied!" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "You do not have permission to access this page!" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "Help" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "Oops!" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "Something went wrong!" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Page not found!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "We couldn't find the page you were looking for." - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "Bad Request!" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "The requested action is not supported!" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Looks like the page you were looking for doesn't exist!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Playlist" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "Smart Block" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "Webstream" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Play" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stop" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "You don't have permission to disconnect source." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "There is no source connected to this input." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "You don't have permission to switch source." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Please enter your username and password." - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "There was a problem with the username or email address you entered." - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream saved." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Invalid form values." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Page not found." - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "The requested action is not supported." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "You do not have permission to access this resource." - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "An internal application error has occurred." - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User added successfully!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User updated successfully!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Preview" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Select cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Remove cursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Delete" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "show does not exist" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "path should be specified" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "Request method not accepted" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s not found" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Something went wrong." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Add to Playlist" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Add to Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Download" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplicate Playlist" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "No action available" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "You don't have permission to delete selected items." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Could not delete file because it is scheduled in the future." - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "Could not delete file(s)." - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Please make sure admin user/password is correct on Settings->Streams page." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "You are not allowed to access this resource." - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "You are not allowed to access this resource. " - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "File does not exist in %s" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad request. no 'mode' parameter passed." - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad request. 'mode' parameter is invalid" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "You can only add tracks, smart blocks, and webstreams to playlists." - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "Recording:" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "Master Stream" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "Live Stream" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "Nothing Scheduled" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "Current Show:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "Current" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "You are running the latest version" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "New version available: " - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "Add to current playlist" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "Add to current smart block" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "Adding 1 Item" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "Adding %s Items" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "You can only add tracks to smart blocks." - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "Please select a cursor position on timeline." - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "You haven't added any tracks" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "You haven't added any playlists" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "You haven't added any smart blocks" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "You haven't added any webstreams" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "Learn about tracks" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "Learn about playlists" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "Learn about smart blocks" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "Learn about webstreams" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "Click 'New' to create one." - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "Edit" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "Edit Metadata" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "Add to selected show" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "Select" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "Select this page" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "Deselect this page" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "Deselect all" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Are you sure you want to delete the selected item(s)?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "Scheduled" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "Composer" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "Conductor" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "Encoded By" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "Last Modified" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "Last Played" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "Mime" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "Mood" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "Owner" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "Track Number" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "Uploaded" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "Website" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "Year" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "Loading..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "Files" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "Web Streams" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "Unknown type: " - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "Are you sure you want to delete the selected item?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "Uploading in progress..." - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "Retrieving data from the server..." - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "View" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "Error code: " - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "Error msg: " - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "Input must be a positive number" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "Input must be a number" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Input must be in the format: yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Input must be in the format: hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "please put in a time '00:00:00 (.0)'" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "Your browser does not support playing this file type: " - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "Dynamic block is not previewable" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "Limit to: " - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "Playlist saved" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "Playlist shuffled" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Listener Count on %s: %s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Remind me in 1 week" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Remind me never" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Yes, help Airtime" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Image must be one of jpg, jpeg, png, or gif" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "Smart block generated and criteria saved" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "Smart block saved" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "Processing..." - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "Select modifier" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "contains" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "does not contain" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "is" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "is not" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "starts with" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "ends with" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "is greater than" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "is less than" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "is in the range" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "Generate" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "Choose Storage Folder" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "Choose Folder to Watch" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Are you sure you want to remove the watched folder?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "This path is currently not accessible." - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "Connected to the streaming server" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "The stream is disabled" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "Getting information from the server..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "Can not connect to the streaming server" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Check this box to automatically switch on Master/Show source upon source connection." - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "If your Icecast server expects a username of 'source', this field can be left blank." - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "If your live streaming client does not ask for a username, this field should be 'source'." - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "WARNING: This will restart your stream and may cause a short dropout for your listeners!" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warning: You cannot change this field while the show is currently playing" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "No result found" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "Specify custom authentication which will work only for this show." - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "The show instance doesn't exist anymore!" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warning: Shows cannot be re-linked" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "Show" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "Show is empty" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1m" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5m" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10m" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15m" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30m" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60m" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "Retrieving data from the server..." - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "This show has no scheduled content." - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "This show is not completely filled with content." - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "January" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "February" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "March" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "April" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "May" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "June" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "July" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "August" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "September" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "October" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "November" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "December" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "Jan" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "Feb" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "Mar" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "Apr" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "Jun" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "Jul" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "Aug" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "Sep" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "Oct" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "Nov" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "Dec" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "Today" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "Day" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "Week" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "Month" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "Sunday" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "Monday" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "Tuesday" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "Wednesday" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "Thursday" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "Friday" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "Saturday" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "Sun" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "Mon" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "Tue" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "Wed" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "Thu" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "Fri" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "Sat" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Shows longer than their scheduled time will be cut off by a following show." - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "Cancel Current Show?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "Stop recording current show?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "Ok" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "Contents of Show" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "Remove all content?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "Delete selected item(s)?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "End" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "Duration" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "Filtering out " - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr " of " - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr " records" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "Show Empty" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "Recording From Line In" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "Track preview" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "Cannot schedule outside a show." - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "Moving 1 Item" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "Moving %s Items" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform features are available in a browser supporting the Web Audio API" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "Select all" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "Select none" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "Trim overbooked shows" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "Remove selected scheduled items" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "Jump to the current playing track" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "Cancel current show" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "Open library to add or remove content" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "Add / Remove Content" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "Disk" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "Look in" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "Open" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "Admin" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DJ" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "Program Manager" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "Guest" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "Guests can do the following:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "View schedule" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "View show content" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "DJs can do the following:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "Manage assigned show content" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "Import media files" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Create playlists, smart blocks, and webstreams" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "Manage their own library content" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "View and manage show content" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "Schedule shows" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "Manage all library content" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "Admins can do the following:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "Manage preferences" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "Manage users" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "Manage watched folders" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "Send support feedback" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "View system status" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "Access playout history" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "View listener stats" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "Show / hide columns" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "From {from} to {to}" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "kbps" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "kHz" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "Su" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "Mo" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "Tu" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "We" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "Th" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "Fr" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "Sa" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "Hour" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "Minute" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "Done" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "Select files" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "Add files to the upload queue and click the start button." - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "Add Files" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "Stop Upload" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "Start upload" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "Add files" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Uploaded %d/%d files" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "N/A" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "Drag files here." - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "File extension error." - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "File size error." - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "File count error." - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "Init error." - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "HTTP Error." - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "Security error." - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "Generic error." - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "IO error." - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "File: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d files queued" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, size: %s, max file size: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL might be wrong or doesn't exist" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "Error: File too large: " - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "Error: Invalid file extension: " - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "Create Entry" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "Edit History Record" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copied %s row%s to the clipboard" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished." - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "New Show" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "New Log Entry" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "Enabled" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "Disabled" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast of show %s from %s at %s" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Record file doesn't exist" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "View Recorded File Metadata" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Schedule Tracks" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Clear Show" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "Cancel Show" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "Edit Instance" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Edit Show" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "Delete Instance" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "Delete Instance and All Following" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Permission denied" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Can't drag and drop repeating shows" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Can't move a past show" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Can't move show into past" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Show was deleted because recorded show does not exist!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Must wait 1 hour to rebroadcast." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Track" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Start Time" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "End Time" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Played" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Select criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "hours" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minutes" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "items" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "Randomly" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "Newest" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "Oldest" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "Type:" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamic" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Static" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "Allow Repeated Tracks:" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "Sort Tracks:" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "Limit to:" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Number:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Repeat Type:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "weekly" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "every 2 weeks" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "every 3 weeks" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "every 4 weeks" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "monthly" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Select Days:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Repeat By:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "day of the month" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "day of the week" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Date End:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "No End?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "End date must be after start date" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Please select a repeat day" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' does not fit the time format 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "Start Time:" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "In the Future:" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "End Time:" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Timezone:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Repeats?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Cannot create show in the past" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Cannot modify start date/time of the show that is already started" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "End date/time cannot be in the past" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Cannot have duration < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Cannot have duration 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Cannot have duration greater than 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Username:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Password:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verify Password:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Firstname:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Lastname:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobile Phone:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "User Type:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Login name is not unique." - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "Use %s Authentication:" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom Username" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "Host:" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Port:" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Mount:" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Station Language" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "Public" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "Private" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Date Start:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Invalid character entered" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Search Users:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Filter by Show" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Background Colour:" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Text Colour:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Current Logo:" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Show Logo:" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "Logo Preview:" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Day must be specified" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Time must be specified" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Instance Description:" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "Station Name" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "Station Description" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: Anything larger than 600x600 will be resized." - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "Default Crossfade Duration (s):" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Please enter a time in seconds (e.g. 0.5)" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "Default Fade In (s):" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "Default Fade Out (s):" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "Public LibreTime API" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "Required for embeddable schedule widget." - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "Enabling this feature will allow LibreTime to provide schedule data to external widgets that can be embedded in your website." - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "Default Language" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "Display login button on your Radio Page?" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Email" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset password" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "Auto Switch Off:" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "Auto Switch On:" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "Switch Transition Fade (s):" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "Only numbers are allowed." - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "Password" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirm new password" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Password confirmation does not match your password." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Delete All Tracks in Library" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "days" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Enabled:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Mobile:" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Channels:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin User" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Password" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server cannot be empty." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port cannot be empty." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount cannot be empty with Icecast server." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Now Playing" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Select Stream:" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Auto-detect the most appropriate stream to use." - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Select a stream:" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Mobile friendly" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - The player does not support Opus streams." - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Copy this code and paste it into your website's HTML to embed the player in your site." - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Push metadata to your station on TuneIn?" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Station ID:" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Partner Key:" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Partner Id:" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwords do not match" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbis Metadata" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "Artist - Title" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "Show - Artist - Title" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "Station name - Show name" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "Enable Replay Gain" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "Streaming Server:" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "Custom / 3rd Party Streaming" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" msgstr "The year %s must be within the range of 1753 - 9999" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" msgstr "%s-%s-%s is not a valid date" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" msgstr "%s:%s:%s is not a valid time" -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "Upload some tracks below to add them to your library!" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "Please click the 'New Show' button and fill out the required fields." -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "It looks like you don't have any shows scheduled yet. %sCreate a show now%s." -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" " %sCreate an unlinked show now%s." msgstr "Linked shows need to be filled with tracks before they start. To start broadcasting cancel the current linked show and schedule an unlinked show. %sCreate an unlinked show now%s." -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "To start broadcasting, click on the current show and select 'Schedule Tracks'" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "Click on the show starting next and select 'Schedule Tracks'" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "It looks like the next show is empty. %sAdd tracks to your show now%s." -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " msgstr "" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " msgstr "" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" msgstr "" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "Radio Page" -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendar" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" +#: application/configs/navigation.php:43 +msgid "Widgets" +msgstr "Widgets" -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" +#: application/configs/navigation.php:52 +msgid "Player" +msgstr "Player" -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" +msgstr "Weekly Schedule" -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "Settings" -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" +#: application/configs/navigation.php:74 +msgid "General" +msgstr "General" -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "My Profile" -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Users" -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "Analytics" -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Playout History" -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "History Templates" -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Listener Stats" -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" msgstr "" -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "Help" -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Getting Started" -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "User Manual" -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" +#: application/configs/navigation.php:173 +msgid "Get Help Online" +msgstr "Get Help Online" -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "You are not allowed to access this resource." -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "You are not allowed to access this resource. " -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in and cue out are null." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Can't set cue in to be larger than cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Can't set cue out to be greater than file length." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Can't set cue out to be smaller than cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Length needs to be greater than 0 minutes" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL should be of form \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL should be 512 characters or less" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "No MIME type found for webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Webstream name cannot be empty" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Could not parse PLS playlist" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Could not parse M3U playlist" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Invalid webstream - This appears to be a file download." - -#: legacy/application/models/Webstream.php:336 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unrecognised stream type: %s" +msgid "File does not exist in %s" +msgstr "File does not exist in %s" -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast of %s from %s" +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad request. no 'mode' parameter passed." -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Select Country" +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad request. 'mode' parameter is invalid" -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Cannot move items out of linked shows" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "You don't have permission to disconnect source." -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "The schedule you're viewing is out of date! (sched mismatch)" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "There is no source connected to this input." -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "The schedule you're viewing is out of date! (instance mismatch)" +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "You don't have permission to switch source." -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "The schedule you're viewing is out of date!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "You are not allowed to schedule show %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "You cannot add files to recording shows." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "The show %s is over and cannot be scheduled." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "The show %s has been previously updated!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Cannot schedule a playlist that contains missing files." - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "A selected File does not exist!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s is already watched." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contains nested watched directory: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s is nested within existing watched directory: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s is not a valid directory." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s is already set as the current storage dir or in the watched folders list" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s is already set as the current storage dir or in the watched folders list." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s doesn't exist in the watched list." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Page not found." + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "The requested action is not supported." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "You do not have permission to access this resource." + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "An internal application error has occurred." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 +#, php-format +msgid "%s not found" +msgstr "%s not found" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Something went wrong." + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Preview" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Add to Playlist" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Add to Smart Block" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Delete" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplicate Playlist" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "No action available" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "You don't have permission to delete selected items." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Could not delete file because it is scheduled in the future." + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "Could not delete file(s)." + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Please make sure admin user/password is correct on Settings->Streams page." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Something went wrong!" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Recording:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nothing Scheduled" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Current Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Current" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "You are running the latest version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "New version available: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Add to current playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Add to current smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adding 1 Item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adding %s Items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "You can only add tracks to smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "You can only add tracks, smart blocks, and webstreams to playlists." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Please select a cursor position on timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "You haven't added any tracks" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "You haven't added any playlists" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "You haven't added any smart blocks" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "You haven't added any webstreams" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Learn about tracks" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Learn about playlists" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Learn about smart blocks" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Learn about webstreams" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Click 'New' to create one." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Add" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "Edit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Remove" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edit Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Add to selected show" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Select" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Select this page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deselect this page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deselect all" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Are you sure you want to delete the selected item(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Scheduled" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Tracks" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playlist" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Title" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Creator" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "Composer" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "Conductor" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Language" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "Last Modified" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "Last Played" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Length" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "Owner" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "Track Number" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "Year" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Loading..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "All" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Files" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unknown type: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Are you sure you want to delete the selected item?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploading in progress..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "View" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Error code: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Error msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Input must be a positive number" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Input must be a number" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Input must be in the format: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Input must be in the format: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "please put in a time '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Your browser does not support playing this file type: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamic block is not previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limit to: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist saved" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist shuffled" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Listener Count on %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Remind me in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Remind me never" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Yes, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Image must be one of jpg, jpeg, png, or gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block generated and criteria saved" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block saved" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processing..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "Select modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "contains" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "does not contain" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "is not" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "starts with" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "ends with" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "is greater than" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "is less than" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "is in the range" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "Generate" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choose Storage Folder" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choose Folder to Watch" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Manage Media Folders" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Are you sure you want to remove the watched folder?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "This path is currently not accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connected to the streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "The stream is disabled" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "Getting information from the server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Can not connect to the streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Check this box to automatically switch on Master/Show source upon source connection." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "If your Icecast server expects a username of 'source', this field can be left blank." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "If your live streaming client does not ask for a username, this field should be 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "WARNING: This will restart your stream and may cause a short dropout for your listeners!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warning: You cannot change this field while the show is currently playing" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "No result found" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Specify custom authentication which will work only for this show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "The show instance doesn't exist anymore!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warning: Shows cannot be re-linked" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show is empty" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "This show has no scheduled content." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "This show is not completely filled with content." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "January" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "February" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "March" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "May" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "June" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "July" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "October" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Today" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Day" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Week" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Month" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "Sunday" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "Monday" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "Tuesday" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "Wednesday" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "Thursday" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "Friday" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "Saturday" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Sun" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Tue" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Wed" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Thu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fri" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Shows longer than their scheduled time will be cut off by a following show." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancel Current Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop recording current show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contents of Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remove all content?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Delete selected item(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "End" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duration" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filtering out " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " of " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " records" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show Empty" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Recording From Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track preview" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Cannot schedule outside a show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moving 1 Item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moving %s Items" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Save" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancel" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform features are available in a browser supporting the Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Select all" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Select none" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Trim overbooked shows" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remove selected scheduled items" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump to the current playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancel current show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open library to add or remove content" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Add / Remove Content" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in use" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Look in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Guest" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Guests can do the following:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "View schedule" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "View show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs can do the following:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Manage assigned show content" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media files" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Create playlists, smart blocks, and webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Manage their own library content" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "View and manage show content" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schedule shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Manage all library content" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins can do the following:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Manage preferences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Manage users" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Manage watched folders" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Send support feedback" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "View system status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Access playout history" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "View listener stats" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Show / hide columns" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "From {from} to {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Su" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Tu" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "We" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Th" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Close" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hour" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Done" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Select files" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "Add files to the upload queue and click the start button." + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Add Files" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Start upload" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "Add files" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Uploaded %d/%d files" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "Drag files here." + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "File extension error." + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "File size error." + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "File count error." + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "Init error." + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "HTTP Error." + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "Security error." + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "Generic error." + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "IO error." + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d files queued" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, size: %s, max file size: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL might be wrong or doesn't exist" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "Error: File too large: " + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "Error: Invalid file extension: " + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Set Default" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "Create Entry" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "Edit History Record" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No Show" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copied %s row%s to the clipboard" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press the Escape key when finished." + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "New Show" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "New Log Entry" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "Enabled" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "Disabled" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "Smart Block" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "Please enter your username and password." + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "There was a problem with the username or email address you entered." + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Wrong username or password provided. Please try again." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "You are viewing an older version of %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "You cannot add tracks to dynamic blocks." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "You don't have permission to delete selected %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "You can only add tracks to smart block." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Untitled Playlist" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Untitled Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Unknown Playlist" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Preferences updated." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Stream Setting Updated." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "path should be specified" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem with Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "Request method not accepted" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast of show %s from %s at %s" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Select cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Remove cursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "show does not exist" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "User added successfully!" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "User updated successfully!" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Settings updated successfully!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Untitled Webstream" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream saved." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Invalid form values." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Invalid character entered" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Day must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Time must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Use %s Authentication:" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Custom Username" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Custom Password" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "Host:" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "Port:" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "Mount:" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Record from Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "days" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Repeat Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "weekly" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "every 2 weeks" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "every 3 weeks" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "every 4 weeks" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monthly" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Select Days:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repeat By:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "day of the month" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "day of the week" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date End:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "No End?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "End date must be after start date" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Please select a repeat day" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Background Colour:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Text Colour:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Current Logo:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Show Logo:" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Logo Preview:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Instance Description:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' does not fit the time format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Start Time:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "In the Future:" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "End Time:" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Duration:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Timezone:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Repeats?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Cannot create show in the past" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Cannot modify start date/time of the show that is already started" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "End date/time cannot be in the past" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Cannot have duration < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Cannot have duration 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Cannot have duration greater than 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Search Users:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Verify Password:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Firstname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Lastname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobile Phone:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "User Type:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login name is not unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Delete All Tracks in Library" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date Start:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Title:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Creator:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Year:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Composer:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Language:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Start Time" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "End Time" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Station Name" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Station Description" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: Anything larger than 600x600 will be resized." + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "Default Crossfade Duration (s):" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Please enter a time in seconds (e.g. 0.5)" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "Default Fade In (s):" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "Default Fade Out (s):" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "Public LibreTime API" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "Required for embeddable schedule widget." + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "Enabling this feature will allow LibreTime to provide schedule data to external widgets that can be embedded in your website." + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "Default Language" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "Display login button on your Radio Page?" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "Auto Switch Off:" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "Auto Switch On:" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "Switch Transition Fade (s):" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "Only numbers are allowed." + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Login" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "Confirm new password" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "Password confirmation does not match your password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Email" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Username" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Back" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Now Playing" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Select Stream:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Auto-detect the most appropriate stream to use." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Select a stream:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Mobile friendly" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - The player does not support Opus streams." + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "Embeddable code:" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Copy this code and paste it into your website's HTML to embed the player in your site." + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "Preview:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Public" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Private" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "Station Language" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "Filter by Show" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "All My Shows:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Select criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hours" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "items" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Randomly" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Newest" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Oldest" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Type:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamic" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Static" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "Allow Repeated Tracks:" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "Sort Tracks:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Limit to:" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbis Metadata" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "Artist - Title" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "Show - Artist - Title" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "Station name - Show name" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "Enable Replay Gain" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "Streaming Server:" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "Custom / 3rd Party Streaming" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Enabled:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "Mobile:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Channels:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin User" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Admin Password" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server cannot be empty." + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port cannot be empty." + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount cannot be empty with Icecast server." + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Push metadata to your station on TuneIn?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Station ID:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Partner Key:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Partner Id:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Watched Folders:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5357,7 +3911,7 @@ msgstr "" "\n" "Please click this link to reset your password: " -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5365,7 +3919,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5374,20 +3928,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s Password Reset" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in and cue out are null." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Can't set cue out to be greater than file length." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Can't set cue in to be larger than cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Can't set cue out to be smaller than cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "Upload Time" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s is already watched." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contains nested watched directory: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s is nested within existing watched directory: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s is not a valid directory." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s is already set as the current storage dir or in the watched folders list" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s is already set as the current storage dir or in the watched folders list." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s doesn't exist in the watched list." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "Powered by %s" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Select Country" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "livestream" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Cannot move items out of linked shows" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "The schedule you're viewing is out of date! (sched mismatch)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "The schedule you're viewing is out of date! (instance mismatch)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "The schedule you're viewing is out of date!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "You are not allowed to schedule show %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "You cannot add files to recording shows." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "The show %s is over and cannot be scheduled." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "The show %s has been previously updated!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Cannot schedule a playlist that contains missing files." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "A selected File does not exist!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Shows can have a max length of 24 hours." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5395,150 +4067,274 @@ msgstr "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast of %s from %s" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "Radio Page" +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Length needs to be greater than 0 minutes" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendar" +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "Widgets" +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL should be of form \"http://domain\"" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "Settings" +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL should be 512 characters or less" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Users" +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "No MIME type found for webstream." -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Webstream name cannot be empty" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Could not parse PLS playlist" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Could not parse M3U playlist" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Invalid webstream - This appears to be a file download." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unrecognised stream type: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Schedule Tracks" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "Clear Show" + +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "Cancel Show" + +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "Edit Instance" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Edit Show" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "Delete Instance" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "Delete Instance and All Following" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Permission denied" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Track" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Played" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Webstreams" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "Analytics" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "History Templates" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Listener Stats" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Getting Started" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "User Manual" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "Get Help Online" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -#~ msgid "FAQ" -#~ msgstr "FAQ" +#~ msgid " to " +#~ msgstr " to " -#~ msgid "View track" -#~ msgstr "View track" +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s is distributed under the %3$s" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, the open radio software for scheduling and remote station management." -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" +#~ msgid "(Required)" +#~ msgstr "(Required)" -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Phone:" -#~ msgstr "Phone:" +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -#~ msgid "Country:" -#~ msgstr "Country:" +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "A track list will be generated when you schedule this smart block into a show." -#~ msgid "City:" -#~ msgstr "City:" +#~ msgid "About" +#~ msgstr "About" -#~ msgid "Station Description:" -#~ msgstr "Station Description:" +#~ msgid "Access Denied!" +#~ msgstr "Access Denied!" -#~ msgid "Promote my station on %s" -#~ msgstr "Promote my station on %s" +#~ msgid "Add New Field" +#~ msgstr "Add New Field" -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgid "Add more elements" +#~ msgstr "Add more elements" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." +#~ msgid "Add this show" +#~ msgstr "Add this show" -#~ msgid "Default License:" -#~ msgstr "Default License:" +#~ msgid "Add tracks to your show" +#~ msgstr "Add tracks to your show" + +#~ msgid "Additional Options" +#~ msgstr "Additional Options" + +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" + +#~ msgid "Airtime Pro Streaming" +#~ msgstr "Airtime Pro Streaming" #~ msgid "All rights are reserved" #~ msgstr "All rights are reserved" -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" +#~ msgid "An error has occurred." +#~ msgstr "An error has occurred." + +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Bad Request!" +#~ msgstr "Bad Request!" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "By checking this box, I agree to %s's %sprivacy policy%s." + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Choose some search criteria above and click Generate to create this playlist." + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Click the 'Upload' button in the left corner to upload tracks to your library." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Click the box below to promote your station on %s." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Attribution No Derivative Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5546,78 +4342,537 @@ msgstr "Couldn't connect to RabbitMQ server! Please check if the server is runni #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Attribution Noncommercial Share Alike" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Cue In: " + +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." + +#~ msgid "Dangerous Options" +#~ msgstr "Dangerous Options" + +#~ msgid "Dashboard" +#~ msgstr "Dashboard" + +#~ msgid "Default Length:" +#~ msgstr "Default Length:" + +#~ msgid "Default License:" +#~ msgstr "Default License:" + #~ msgid "Default Sharing Type:" #~ msgstr "Default Sharing Type:" -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" +#~ msgid "Disk Space" +#~ msgstr "Disk Space" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Drag tracks here from your library to add them to the playlist" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Drop files here or click to browse your computer." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Editing " +#~ msgstr "Editing " + +#~ msgid "Email Sent!" +#~ msgstr "Email Sent!" + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "FAQ" +#~ msgstr "FAQ" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "Failed" +#~ msgstr "Failed" + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Forgot your password?" + +#~ msgid "Global" +#~ msgstr "Global" #~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." #~ msgstr "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Click the box below to promote your station on %s." +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Here's how you can get started using %s to automate your broadcasts: " -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" +#~ msgid "Last Name" +#~ msgstr "Last Name" -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" +#~ msgid "Length:" +#~ msgstr "Length:" -#~ msgid "file meets the criteria" -#~ msgstr "file meets the criteria" +#~ msgid "Limit to " +#~ msgstr "Limit to " -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgid "Listen" +#~ msgstr "Listen" -#~ msgid "Viewing " -#~ msgstr "Viewing " +#~ msgid "Listeners" +#~ msgstr "Listeners" -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" +#~ msgid "Live Broadcasting" +#~ msgstr "Live Broadcasting" -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "New Criteria" +#~ msgstr "New Criteria" + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New Modifier" +#~ msgstr "New Modifier" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No smart block currently open" +#~ msgstr "No smart block currently open" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "Now you're good to go!" +#~ msgstr "Now you're good to go!" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Oops!" +#~ msgstr "Oops!" + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Output Streams" +#~ msgstr "Output Streams" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Password Reset" +#~ msgstr "Password Reset" + +#~ msgid "Pending" +#~ msgstr "Pending" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Playout History Templates" +#~ msgstr "Playout History Templates" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." #~ msgid "Please upgrade to " #~ msgstr "Please upgrade to " +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promote my station on %s" + +#~ msgid "Recent Uploads" +#~ msgstr "Recent Uploads" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Remove all content from this smart block" + #~ msgid "Remove track" #~ msgstr "Remove track" +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Rescan watched directory (This is useful if it is a network mount and may be out of sync with %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Schedule a show" +#~ msgstr "Schedule a show" + +#~ msgid "Search Criteria:" +#~ msgstr "Search Criteria:" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Stream Data Collection Status" + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The requested action is not supported!" +#~ msgstr "The requested action is not supported!" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#~ msgid "" +#~ "To configure and use the embeddable player you must:

\n" +#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" +#~ " 2. Enable the Public LibreTime API under System -> Preferences" +#~ msgstr "" +#~ "To configure and use the embeddable player you must:

\n" +#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" +#~ " 2. Enable the Public LibreTime API under System -> Preferences" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "" +#~ "To use the embeddable weekly schedule widget you must:

\n" +#~ " Enable the Public LibreTime API under System -> Preferences" +#~ msgstr "" +#~ "To use the embeddable weekly schedule widget you must:

\n" +#~ " Enable the Public LibreTime API under System -> Preferences" + +#~ msgid "Toggle Details" +#~ msgstr "Toggle Details" + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "TuneIn Settings" +#~ msgstr "TuneIn Settings" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "Upload" +#~ msgstr "Upload" + +#~ msgid "Upload audio tracks" +#~ msgstr "Upload audio tracks" + #~ msgid "Upload track" #~ msgstr "Upload track" -#~ msgid "" -#~ "To configure and use the embeddable player you must:

\n" -#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" -#~ " 2. Enable the Public LibreTime API under System -> Preferences" -#~ msgstr "" -#~ "To configure and use the embeddable player you must:

\n" -#~ " 1. Enable at least one MP3, AAC, or OGG stream under System -> Streams
\n" -#~ " 2. Enable the Public LibreTime API under System -> Preferences" +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Use these settings in your broadcasting software to stream live at any time." -#~ msgid "" -#~ "To use the embeddable weekly schedule widget you must:

\n" -#~ " Enable the Public LibreTime API under System -> Preferences" -#~ msgstr "" -#~ "To use the embeddable weekly schedule widget you must:

\n" -#~ " Enable the Public LibreTime API under System -> Preferences" +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "View track" +#~ msgstr "View track" + +#~ msgid "Viewing " +#~ msgstr "Viewing " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "We couldn't find the page you were looking for." + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "Webstream" +#~ msgstr "Webstream" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Welcome to %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "You do not have permission to access this page!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "file meets the criteria" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "please put in a time in seconds '00 (.0)'" -#~ msgid "Airtime Pro Streaming" -#~ msgstr "Airtime Pro Streaming" +#~ msgid "previous" +#~ msgstr "previous" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/legacy/locale/en_US/LC_MESSAGES/libretime.po b/legacy/locale/en_US/LC_MESSAGES/libretime.po index fd62c7cfe..30344ad0c 100644 --- a/legacy/locale/en_US/LC_MESSAGES/libretime.po +++ b/legacy/locale/en_US/LC_MESSAGES/libretime.po @@ -1,5351 +1,3906 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Daniel James , 2014 # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: English (United States) (http://www.transifex.com/sourcefabric/airtime/language/en_US/)\n" +"Language-Team: English (United States)\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Login" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "New password" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Please enter and confirm your new password in the fields below." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Playout History" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Log Sheet" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "File Summary" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Show Summary" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Manage Media Folders" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Stream Settings" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Save" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Required)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Additional Options" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "The following info will be displayed to listeners in their media player:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Your radio station website)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "or" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "and" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " to " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Choose Show Instance" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No Show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Find" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Choose folder" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Set" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Current Import Folder:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Add" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Remove watched directory" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "You are not watching any media folders." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Choose Days:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Remove" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Repeat Days:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Find Shows" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filter History" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Show Source" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master Source" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Manage Users" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "New User" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Username" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "First Name" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Last Name" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "User Type" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Expand Static Block" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Expand Dynamic Block" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Name:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Description:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Duration:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Shuffle playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Shuffle" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Empty playlist content" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Clear" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade out: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancel" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Save playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "No open playlist" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Show Waveform" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade in: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Original Length:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "in use" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "All" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Advanced Search Options" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Description" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Default Length:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "No webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Close" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Name" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Creator" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Language" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "File import in progress..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Title:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creator:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Track:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Length:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Sample Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Mood:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Year:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Label:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Composer:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conductor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc Number:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Language:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "File Path:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamic Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Static Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Audio Track" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Playlist Contents: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Static Smart Block Contents: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dynamic Smart Block Criteria: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Limit to " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Disk Space" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "previous" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "play" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "next" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "mute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "unmute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "max volume" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Update Required" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Creating File Summary Template" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Creating Log Sheet Template" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Add more elements" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Add New Field" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Set Default Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Log Sheet Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "New Log Sheet Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "No Log Sheet Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Set Default" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "File Summary Templates" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "New File Summary Template" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "No File Summary Templates" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "About" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "For more detailed help, read the %suser manual%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Share" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Select stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Add this show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Update show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "What" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "When" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Live Stream Input" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Who" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Style" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Start" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Title" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Length" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Previous:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Next:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Source Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Listen" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Logout" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlists" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blocks" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "Help" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Page not found!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Looks like the page you were looking for doesn't exist!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Play" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stop" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "You don't have permission to disconnect source." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "There is no source connected to this input." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "You don't have permission to switch source." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream saved." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Invalid form values." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User added successfully!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User updated successfully!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Preview" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Select cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Remove cursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Delete" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "show does not exist" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "path should be specified" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s not found" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Something went wrong." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Add to Playlist" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Add to Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Download" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplicate Playlist" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "No action available" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "You don't have permission to delete selected items." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Copy of %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Please make sure admin user/password is correct on Settings->Streams page." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "You are not allowed to access this resource." - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "You are not allowed to access this resource. " - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad request. no 'mode' parameter passed." - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad request. 'mode' parameter is invalid" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "You can only add tracks, smart blocks, and webstreams to playlists." - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "Recording:" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "Master Stream" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "Live Stream" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "Nothing Scheduled" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "Current Show:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "Current" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "You are running the latest version" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "New version available: " - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "Add to current playlist" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "Add to current smart block" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "Adding 1 Item" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "Adding %s Items" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "You can only add tracks to smart blocks." - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "Please select a cursor position on timeline." - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "Edit" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "Edit Metadata" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "Add to selected show" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "Select" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "Select this page" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "Deselect this page" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "Deselect all" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Are you sure you want to delete the selected item(s)?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "Scheduled" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "Composer" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "Conductor" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "Encoded By" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "Last Modified" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "Last Played" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "Mime" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "Mood" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "Owner" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "Track Number" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "Uploaded" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "Website" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "Year" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "Loading..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "Files" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "Web Streams" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "Unknown type: " - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "Are you sure you want to delete the selected item?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "Uploading in progress..." - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "Retrieving data from the server..." - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "Error code: " - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "Error msg: " - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "Input must be a positive number" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "Input must be a number" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Input must be in the format: yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Input must be in the format: hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "Open Media Builder" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "please put in a time '00:00:00 (.0)'" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "Your browser does not support playing this file type: " - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "Dynamic block is not previewable" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "Limit to: " - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "Playlist saved" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "Playlist shuffled" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Listener Count on %s: %s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Remind me in 1 week" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Remind me never" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Yes, help Airtime" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Image must be one of jpg, jpeg, png, or gif" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "Smart block shuffled" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "Smart block generated and criteria saved" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "Smart block saved" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "Processing..." - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "Select modifier" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "contains" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "does not contain" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "is" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "is not" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "starts with" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "ends with" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "is greater than" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "is less than" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "is in the range" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "Generate" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "Choose Storage Folder" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "Choose Folder to Watch" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Are you sure you want to remove the watched folder?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "This path is currently not accessible." - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "Connected to the streaming server" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "The stream is disabled" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "Getting information from the server..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "Can not connect to the streaming server" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Check this box to automatically switch on Master/Show source upon source connection." - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "If your Icecast server expects a username of 'source', this field can be left blank." - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "If your live streaming client does not ask for a username, this field should be 'source'." - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Warning: You cannot change this field while the show is currently playing" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "No result found" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "Specify custom authentication which will work only for this show." - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "The show instance doesn't exist anymore!" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "Warning: Shows cannot be re-linked" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "Show" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "Show is empty" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1m" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5m" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10m" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15m" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30m" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60m" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "Retrieving data from the server..." - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "This show has no scheduled content." - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "This show is not completely filled with content." - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "January" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "February" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "March" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "April" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "May" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "June" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "July" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "August" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "September" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "October" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "November" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "December" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "Jan" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "Feb" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "Mar" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "Apr" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "Jun" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "Jul" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "Aug" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "Sep" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "Oct" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "Nov" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "Dec" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "Sunday" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "Monday" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "Tuesday" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "Wednesday" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "Thursday" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "Friday" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "Saturday" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "Sun" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "Mon" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "Tue" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "Wed" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "Thu" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "Fri" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "Sat" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Shows longer than their scheduled time will be cut off by a following show." - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "Cancel Current Show?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "Stop recording current show?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "Ok" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "Contents of Show" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "Remove all content?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "Delete selected item(s)?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "End" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "Duration" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "Show Empty" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "Recording From Line In" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "Track preview" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "Cannot schedule outside a show." - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "Moving 1 Item" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "Moving %s Items" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "Fade Editor" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "Cue Editor" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform features are available in a browser supporting the Web Audio API" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "Select all" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "Select none" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "Remove selected scheduled items" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "Jump to the current playing track" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "Cancel current show" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "Open library to add or remove content" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "Add / Remove Content" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "Disk" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "Look in" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "Open" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "Admin" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DJ" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "Program Manager" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "Guest" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "Guests can do the following:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "View schedule" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "View show content" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "DJs can do the following:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "Manage assigned show content" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "Import media files" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Create playlists, smart blocks, and webstreams" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "Manage their own library content" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "View and manage show content" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "Schedule shows" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "Manage all library content" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "Admins can do the following:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "Manage preferences" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "Manage users" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "Manage watched folders" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "Send support feedback" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "View system status" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "Access playout history" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "View listener stats" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "Show / hide columns" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "From {from} to {to}" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "kbps" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "kHz" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "Su" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "Mo" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "Tu" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "We" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "Th" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "Fr" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "Sa" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "Hour" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "Minute" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "Done" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "Select files" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "Add files to the upload queue and click the start button." - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "Add Files" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "Stop Upload" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "Start upload" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "Add files" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Uploaded %d/%d files" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "N/A" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "Drag files here." - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "File extension error." - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "File size error." - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "File count error." - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "Init error." - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "HTTP Error." - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "Security error." - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "Generic error." - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "IO error." - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "File: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d files queued" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, size: %s, max file size: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL might be wrong or doesn't exist" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "Error: File too large: " - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "Error: Invalid file extension: " - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "Create Entry" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "Edit History Record" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copied %s row%s to the clipboard" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "Enabled" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "Disabled" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast of show %s from %s at %s" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Record file doesn't exist" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "View Recorded File Metadata" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Edit Show" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Permission denied" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Can't drag and drop repeating shows" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Can't move a past show" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Can't move show into past" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Show was deleted because recorded show does not exist!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Must wait 1 hour to rebroadcast." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Track" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Start Time" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "End Time" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Played" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Select criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "hours" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minutes" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "items" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamic" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Static" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Number:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Repeat Type:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "weekly" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "every 2 weeks" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "every 3 weeks" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "every 4 weeks" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "monthly" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Select Days:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Repeat By:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "day of the month" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "day of the week" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Date End:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "No End?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "End date must be after start date" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Please select a repeat day" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' does not fit the time format 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Timezone:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Repeats?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Cannot create show in the past" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Cannot modify start date/time of the show that is already started" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "End date/time cannot be in the past" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Cannot have duration < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Cannot have duration 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Cannot have duration greater than 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Username:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Password:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verify Password:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Firstname:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Lastname:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobile Phone:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "User Type:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Login name is not unique." - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom Username" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Date Start:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Invalid character entered" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Search Users:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Background Color:" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Text Color:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Day must be specified" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Time must be specified" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "Station Name" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Note: Anything larger than 600x600 will be resized." - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "Default Crossfade Duration (s):" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "Default Fade In (s):" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "Default Fade Out (s):" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "Week Starts On" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset password" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "Only numbers are allowed." - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "Password" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirm new password" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Password confirmation does not match your password." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "days" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Enabled:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Channels:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin User" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Password" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server cannot be empty." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port cannot be empty." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount cannot be empty with Icecast server." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Now Playing" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwords do not match" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbis Metadata" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "Artist - Title" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "Show - Artist - Title" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "Station name - Show name" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "Enable Replay Gain" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" msgstr "The year %s must be within the range of 1753 - 9999" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" msgstr "%s-%s-%s is not a valid date" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" msgstr "%s:%s:%s is not a valid time" -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" " %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " msgstr "" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " msgstr "" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" msgstr "" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendar" -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" +#: application/configs/navigation.php:52 +msgid "Player" msgstr "" -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" +#: application/configs/navigation.php:80 +msgid "My Profile" msgstr "" -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Users" -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" +#: application/configs/navigation.php:114 +msgid "Analytics" msgstr "" -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Playout History" -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "History Templates" -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Listener Stats" -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" msgstr "" -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "Help" -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Getting Started" -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "User Manual" -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "You are not allowed to access this resource." -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "You are not allowed to access this resource. " -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in and cue out are null." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Can't set cue in to be larger than cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Can't set cue out to be greater than file length." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Can't set cue out to be smaller than cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Length needs to be greater than 0 minutes" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL should be of form \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL should be 512 characters or less" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "No MIME type found for webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Webstream name cannot be empty" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Could not parse PLS playlist" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Could not parse M3U playlist" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Invalid webstream - This appears to be a file download." - -#: legacy/application/models/Webstream.php:336 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" -msgstr "Unrecognized stream type: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast of %s from %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Select Country" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Cannot move items out of linked shows" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "The schedule you're viewing is out of date! (sched mismatch)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "The schedule you're viewing is out of date! (instance mismatch)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "The schedule you're viewing is out of date!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "You are not allowed to schedule show %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "You cannot add files to recording shows." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "The show %s is over and cannot be scheduled." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "The show %s has been previously updated!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +msgid "File does not exist in %s" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad request. no 'mode' parameter passed." + +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad request. 'mode' parameter is invalid" + +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "You don't have permission to disconnect source." + +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "There is no source connected to this input." + +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "You don't have permission to switch source." + +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "A selected File does not exist!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s is already watched." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contains nested watched directory: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s is nested within existing watched directory: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s is not a valid directory." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s is already set as the current storage dir or in the watched folders list" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s is already set as the current storage dir or in the watched folders list." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s doesn't exist in the watched list." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 +#, php-format +msgid "%s not found" +msgstr "%s not found" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Something went wrong." + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Preview" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Add to Playlist" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Add to Smart Block" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Delete" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplicate Playlist" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "No action available" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "You don't have permission to delete selected items." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Copy of %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Please make sure admin user/password is correct on Settings->Streams page." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Recording:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live Stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Nothing Scheduled" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Current Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Current" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "You are running the latest version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "New version available: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Add to current playlist" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Add to current smart block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Adding 1 Item" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "Adding %s Items" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "You can only add tracks to smart blocks." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "You can only add tracks, smart blocks, and webstreams to playlists." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Please select a cursor position on timeline." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Add" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "Edit" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Remove" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Edit Metadata" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Add to selected show" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Select" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Select this page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Deselect this page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Deselect all" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Are you sure you want to delete the selected item(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Scheduled" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Title" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Creator" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "Composer" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "Conductor" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "Encoded By" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Language" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "Last Modified" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "Last Played" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Length" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "Owner" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "Track Number" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "Website" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "Year" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Loading..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "All" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Files" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocks" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Unknown type: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Are you sure you want to delete the selected item?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploading in progress..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Error code: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Error msg: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Input must be a positive number" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Input must be a number" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Input must be in the format: yyyy-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Input must be in the format: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media Builder" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "please put in a time '00:00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Your browser does not support playing this file type: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamic block is not previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limit to: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Playlist saved" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist shuffled" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Listener Count on %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Remind me in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Remind me never" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Yes, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Image must be one of jpg, jpeg, png, or gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Smart block shuffled" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Smart block generated and criteria saved" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart block saved" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Processing..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "Select modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "contains" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "does not contain" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "is not" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "starts with" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "ends with" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "is greater than" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "is less than" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "is in the range" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "Generate" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choose Storage Folder" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choose Folder to Watch" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Manage Media Folders" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Are you sure you want to remove the watched folder?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "This path is currently not accessible." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connected to the streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "The stream is disabled" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "Getting information from the server..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Can not connect to the streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Check this box to automatically switch off Master/Show source upon source disconnection." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Check this box to automatically switch on Master/Show source upon source connection." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "If your Icecast server expects a username of 'source', this field can be left blank." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "If your live streaming client does not ask for a username, this field should be 'source'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Warning: You cannot change this field while the show is currently playing" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "No result found" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "This follows the same security pattern for the shows: only users assigned to the show can connect." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Specify custom authentication which will work only for this show." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "The show instance doesn't exist anymore!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Warning: Shows cannot be re-linked" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show is empty" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retrieving data from the server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "This show has no scheduled content." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "This show is not completely filled with content." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "January" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "February" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "March" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "April" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "May" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "June" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "July" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "August" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "September" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "October" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "November" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "December" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "Sunday" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "Monday" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "Tuesday" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "Wednesday" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "Thursday" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "Friday" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "Saturday" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Sun" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Mon" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Tue" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Wed" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Thu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Fri" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Shows longer than their scheduled time will be cut off by a following show." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Cancel Current Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop recording current show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contents of Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Remove all content?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Delete selected item(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "End" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duration" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show Empty" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Recording From Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track preview" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Cannot schedule outside a show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Moving 1 Item" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "Moving %s Items" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Save" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancel" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Editor" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Editor" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform features are available in a browser supporting the Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Select all" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Select none" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Remove selected scheduled items" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump to the current playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Cancel current show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open library to add or remove content" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Add / Remove Content" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in use" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disk" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Look in" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Manager" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Guest" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Guests can do the following:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "View schedule" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "View show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJs can do the following:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Manage assigned show content" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Import media files" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Create playlists, smart blocks, and webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Manage their own library content" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "View and manage show content" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schedule shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Manage all library content" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Admins can do the following:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Manage preferences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Manage users" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Manage watched folders" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Send support feedback" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "View system status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Access playout history" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "View listener stats" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Show / hide columns" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "From {from} to {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Su" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Mo" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Tu" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "We" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Th" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Fr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Close" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Hour" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Done" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Select files" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "Add files to the upload queue and click the start button." + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Add Files" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop Upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Start upload" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "Add files" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Uploaded %d/%d files" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "Drag files here." + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "File extension error." + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "File size error." + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "File count error." + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "Init error." + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "HTTP Error." + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "Security error." + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "Generic error." + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "IO error." + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d files queued" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, size: %s, max file size: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL might be wrong or doesn't exist" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "Error: File too large: " + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "Error: Invalid file extension: " + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Set Default" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "Create Entry" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "Edit History Record" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No Show" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copied %s row%s to the clipboard" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "Enabled" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "Disabled" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Wrong username or password provided. Please try again." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "You are viewing an older version of %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "You cannot add tracks to dynamic blocks." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "You don't have permission to delete selected %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "You can only add tracks to smart block." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Untitled Playlist" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Untitled Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Unknown Playlist" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Preferences updated." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Stream Setting Updated." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "path should be specified" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem with Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast of show %s from %s at %s" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Select cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Remove cursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "show does not exist" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "User added successfully!" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "User updated successfully!" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Settings updated successfully!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Untitled Webstream" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream saved." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Invalid form values." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Invalid character entered" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Day must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Time must be specified" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Custom Username" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Custom Password" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Record from Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "days" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Repeat Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "weekly" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "every 2 weeks" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "every 3 weeks" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "every 4 weeks" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "monthly" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Select Days:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repeat By:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "day of the month" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "day of the week" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date End:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "No End?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "End date must be after start date" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Please select a repeat day" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Background Color:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Text Color:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Name:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' does not fit the time format 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Duration:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Timezone:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Repeats?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Cannot create show in the past" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Cannot modify start date/time of the show that is already started" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "End date/time cannot be in the past" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Cannot have duration < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Cannot have duration 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Cannot have duration greater than 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Search Users:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Verify Password:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Firstname:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Lastname:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobile Phone:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "User Type:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login name is not unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date Start:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Title:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Creator:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Year:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Composer:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Language:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Start Time" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "End Time" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Station Name" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Note: Anything larger than 600x600 will be resized." + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "Default Crossfade Duration (s):" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "Default Fade In (s):" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "Default Fade Out (s):" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "Only numbers are allowed." + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Login" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "Password" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "Confirm new password" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "Password confirmation does not match your password." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Username" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Now Playing" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "All My Shows:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Select criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "hours" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "items" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamic" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Static" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbis Metadata" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "Artist - Title" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "Show - Artist - Title" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "Station name - Show name" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "Enable Replay Gain" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Enabled:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Channels:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Name" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Mount Point" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin User" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Admin Password" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server cannot be empty." + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port cannot be empty." + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount cannot be empty with Icecast server." + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import Folder:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Watched Folders:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5353,7 +3908,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5361,7 +3916,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5370,20 +3925,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in and cue out are null." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Can't set cue out to be greater than file length." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Can't set cue in to be larger than cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Can't set cue out to be smaller than cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s is already watched." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contains nested watched directory: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s is nested within existing watched directory: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s is not a valid directory." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s is already set as the current storage dir or in the watched folders list" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s is already set as the current storage dir or in the watched folders list." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s doesn't exist in the watched list." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Select Country" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Cannot move items out of linked shows" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "The schedule you're viewing is out of date! (sched mismatch)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "The schedule you're viewing is out of date! (instance mismatch)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "The schedule you're viewing is out of date!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "You are not allowed to schedule show %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "You cannot add files to recording shows." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "The show %s is over and cannot be scheduled." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "The show %s has been previously updated!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "A selected File does not exist!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Shows can have a max length of 24 hours." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5391,138 +4064,223 @@ msgstr "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast of %s from %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Length needs to be greater than 0 minutes" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL should be of form \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL should be 512 characters or less" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "No MIME type found for webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Webstream name cannot be empty" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Could not parse PLS playlist" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Could not parse M3U playlist" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Invalid webstream - This appears to be a file download." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Unrecognized stream type: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendar" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Users" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Edit Show" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "History Templates" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Permission denied" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Listener Stats" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Track" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Played" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Getting Started" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "User Manual" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgid " to " +#~ msgstr " to " -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "For more details, please read the %sAirtime Manual%s" +#~ msgid "(Required)" +#~ msgstr "(Required)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Progam Managers can do the following:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Your radio station website)" -#~ msgid "Support setting updated." -#~ msgstr "Support setting updated." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(for verification purposes only, will not be published)" -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Type the characters you see in the picture below." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Phone:" +#~ msgid "About" +#~ msgstr "About" -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" +#~ msgid "Add New Field" +#~ msgstr "Add New Field" -#~ msgid "Country:" -#~ msgstr "Country:" +#~ msgid "Add more elements" +#~ msgstr "Add more elements" -#~ msgid "City:" -#~ msgstr "City:" +#~ msgid "Add this show" +#~ msgstr "Add this show" -#~ msgid "Station Description:" -#~ msgstr "Station Description:" +#~ msgid "Additional Options" +#~ msgstr "Additional Options" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "You have to agree to privacy policy." - -#~ msgid "Default License:" -#~ msgstr "Default License:" +#~ msgid "Advanced Search Options" +#~ msgstr "Advanced Search Options" #~ msgid "All rights are reserved" #~ msgstr "All rights are reserved" -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" +#~ msgid "Audio Track" +#~ msgstr "Audio Track" + +#~ msgid "Choose Days:" +#~ msgstr "Choose Days:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choose Show Instance" + +#~ msgid "Choose folder" +#~ msgstr "Choose folder" + +#~ msgid "City:" +#~ msgstr "City:" + +#~ msgid "Clear" +#~ msgstr "Clear" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" + +#~ msgid "Country:" +#~ msgstr "Country:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creating File Summary Template" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creating Log Sheet Template" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Attribution No Derivative Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5530,38 +4288,370 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Attribution Noncommercial Share Alike" -#~ msgid "Register Airtime" -#~ msgstr "Register Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(for verification purposes only, will not be published)" +#~ msgid "Cue In: " +#~ msgstr "Cue In: " -#~ msgid "Show me what I am sending " -#~ msgstr "Show me what I am sending " +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " -#~ msgid "Terms and Conditions" -#~ msgstr "Terms and Conditions" +#~ msgid "Current Import Folder:" +#~ msgstr "Current Import Folder:" -#~ msgid "files meet the criteria" -#~ msgstr "files meet the criteria" +#~ msgid "Cursor" +#~ msgstr "Cursor" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgid "Default Length:" +#~ msgstr "Default Length:" -#~ msgid "Your trial expires in" -#~ msgstr "Your trial expires in" +#~ msgid "Default License:" +#~ msgstr "Default License:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "This version will soon be obsolete." +#~ msgid "Disk Space" +#~ msgstr "Disk Space" -#~ msgid "This version is no longer supported." -#~ msgstr "This version is no longer supported." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamic Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamic Smart Block Criteria: " + +#~ msgid "Empty playlist content" +#~ msgstr "Empty playlist content" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expand Dynamic Block" + +#~ msgid "Expand Static Block" +#~ msgstr "Expand Static Block" + +#~ msgid "Fade in: " +#~ msgstr "Fade in: " + +#~ msgid "Fade out: " +#~ msgstr "Fade out: " + +#~ msgid "File Path:" +#~ msgstr "File Path:" + +#~ msgid "File Summary" +#~ msgstr "File Summary" + +#~ msgid "File Summary Templates" +#~ msgstr "File Summary Templates" + +#~ msgid "File import in progress..." +#~ msgstr "File import in progress..." + +#~ msgid "Filter History" +#~ msgstr "Filter History" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "Find Shows" +#~ msgstr "Find Shows" + +#~ msgid "First Name" +#~ msgstr "First Name" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "For more detailed help, read the %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "For more details, please read the %sAirtime Manual%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Number:" + +#~ msgid "Last Name" +#~ msgstr "Last Name" + +#~ msgid "Length:" +#~ msgstr "Length:" + +#~ msgid "Limit to " +#~ msgstr "Limit to " + +#~ msgid "Listen" +#~ msgstr "Listen" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log Sheet" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log Sheet Templates" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Looks like the page you were looking for doesn't exist!" + +#~ msgid "Manage Users" +#~ msgstr "Manage Users" + +#~ msgid "Master Source" +#~ msgstr "Master Source" + +#~ msgid "New File Summary Template" +#~ msgstr "New File Summary Template" + +#~ msgid "New Log Sheet Template" +#~ msgstr "New Log Sheet Template" + +#~ msgid "New User" +#~ msgstr "New User" + +#~ msgid "New password" +#~ msgstr "New password" + +#~ msgid "Next:" +#~ msgstr "Next:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No File Summary Templates" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No Log Sheet Templates" + +#~ msgid "No open playlist" +#~ msgstr "No open playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Original Length:" + +#~ msgid "Page not found!" +#~ msgstr "Page not found!" + +#~ msgid "Phone:" +#~ msgstr "Phone:" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Playlist Contents: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Please enter and confirm your new password in the fields below." #~ msgid "Please upgrade to " #~ msgstr "Please upgrade to " +#~ msgid "Previous:" +#~ msgstr "Previous:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Progam Managers can do the following:" + +#~ msgid "Register Airtime" +#~ msgstr "Register Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Remove watched directory" + +#~ msgid "Repeat Days:" +#~ msgstr "Repeat Days:" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Save playlist" + +#~ msgid "Select stream:" +#~ msgstr "Select stream:" + +#~ msgid "Set" +#~ msgstr "Set" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Set Default Template" + +#~ msgid "Share" +#~ msgstr "Share" + +#~ msgid "Show Source" +#~ msgstr "Show Source" + +#~ msgid "Show Summary" +#~ msgstr "Show Summary" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Show me what I am sending " + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle playlist" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Static Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Static Smart Block Contents: " + +#~ msgid "Station Description:" +#~ msgstr "Station Description:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Settings" +#~ msgstr "Stream Settings" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL: " + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Support setting updated." + +#~ msgid "Terms and Conditions" +#~ msgstr "Terms and Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "The following info will be displayed to listeners in their media player:" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "This version is no longer supported." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "This version will soon be obsolete." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Track:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Type the characters you see in the picture below." + +#~ msgid "Update Required" +#~ msgstr "Update Required" + +#~ msgid "Update show" +#~ msgstr "Update show" + +#~ msgid "User Type" +#~ msgstr "User Type" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "What" + +#~ msgid "When" +#~ msgstr "When" + +#~ msgid "Who" +#~ msgstr "Who" + +#~ msgid "You are not watching any media folders." +#~ msgstr "You are not watching any media folders." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "You have to agree to privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Your trial expires in" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "files meet the criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max volume" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "please put in a time in seconds '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgid "previous" +#~ msgstr "previous" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "unmute" diff --git a/legacy/locale/es_ES/LC_MESSAGES/libretime.po b/legacy/locale/es_ES/LC_MESSAGES/libretime.po index 46e673170..ace7cc555 100644 --- a/legacy/locale/es_ES/LC_MESSAGES/libretime.po +++ b/legacy/locale/es_ES/LC_MESSAGES/libretime.po @@ -1,1885 +1,831 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Xabier Arrabal , 2015 # Maria Ituarte , 2015 # Sourcefabric , 2012 # Víctor Carranza , 2014 +# msgid "" msgstr "" -"Project-Id-Version: Libretime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2017-07-19 15:51+0000\n" "Last-Translator: Xabier Arrabal \n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/sourcefabric/airtime/language/es_ES/)\n" +"Language-Team: Spanish (Spain)\n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "¡Email enviado!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "Se ha enviado un enlace de restablecimiento de contraseña a tu dirección de correo electrónico. Por favor, comprueba tu correo electrónico y sigue las instrucciones para restablecer tu contraseña. Si no ves el correo electrónico, comprueba tu carpeta de correo no deseado" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "Atrás" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Iniciar sesión" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "¡Bienvenido a la demo de %s! Puedes iniciar sesión con el nombre de usuario 'admin' y la contraseña 'admin'." +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "El año %s debe estar dentro del rango de 1753-9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "Restablecer Contraseña" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nueva contraseña" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Por favor entra y confirma tu nueva contraseña en los campos que aparecen a continuación." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Historial de reproducción" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Hoja de Registro" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Resumen de Archivos" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Resumen de Shows" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Administrar las Carpetas de Medios" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Configuración de stream" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Guardar" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "Streams de salida" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "Shows programados" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "Mi Perfil" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Requerido)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Opciones adicionales" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "La siguiente información se desplegará a los oyentes en sus reproductores:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(El sitio web de tu estación)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL del stream: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "Configuración de TuneIn" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "Opciones Peligrosas" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "Buscar criterio:" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "o" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "y" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "Nuevo Modificador" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " para " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "Nuevo criterio" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Selecciona Instancia del Show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "No hay Show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Buscar" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Selecciona carpeta" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Establecer" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Carpeta actual de importación:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Añadir" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "Vuelva a analizar el directorio monitorizado (Esto es útil si es un montaje en red y pueda estar fuera de sincronización con %s)" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s no es una fecha válida" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Quitar el directorio monitorizado" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "No estás monitorizando ninguna carpeta de medios." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Elige los días:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Eliminar" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Días de repetición:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Buscar Shows" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtrar historial" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Fuente del Show" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "Los DJs pueden usar esta configuración para conectarse con software compatible y transmitir en directo durante este programa. Asigna un DJ a continuación" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "¿Olvidaste tu contraseña?" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "Transmisión en vivo" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Fuente maestra" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "Utiliza estos ajustes en tu software de difusión para transmitir en directo en cualquier momento." - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "Sobrescribir" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "RESETEAR" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "Los DJs pueden usar estos ajustes en su software de difusión para transmitir en directo sólo durante los programas que se les asignan." - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" -msgstr "¡Bienvenido a %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s no es una hora válida" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "Puedes cambiar estas opciones más adelante en tus preferencias y ajustes de usuario." - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "Suscribirse" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Administrar usuarios" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Nuevo usuario" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Usuario" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Nombre" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Apellido" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Tipo de usuario" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "Oyentes" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "Estado de la recogida de datos del Stream" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Expandir bloque estático" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Expandir bloque dinámico" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "Selecciona algunos criterios de búsqueda y haz clic en Generar para crear esta lista de reproducción." - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "Al programar este bloque inteligente en un programa se generará una lista de reproduccin " - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "Arrastra las pistas aquí desde tu biblioteca para agregarlas a la lista de reproducción" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "Editando " - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nombre:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Descripción:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Duración:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "Mostrar/Ocultar detalles" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Lista de reproducción aleatoria" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Reproducción aleatoria" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Transición (crossfade) de la lista de reproducción" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Lista de reproducción vacía" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Vaciar" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancelar" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "No hay listas de reproducción abiertas" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Mostrar Waveform" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "Eliminar todo el contenido de este bloque inteligente" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "Ningún bloque inteligente abierto actualmente" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Duración original:" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "Subir" +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "Arrastra archivos aquí o haz clic para seleccionarlos de tu equipo." +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "Almacenamiento" +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "en uso" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Usar el predeterminado de la estación" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Cargue algunas pistas para agregarlas a su biblioteca." + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Todo" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos." -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "Fallo" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Parece que no tienes shows programados. %sCrea un show ahora%s." -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "Pendiente" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'." -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "Subidas Recientes" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Opciones de búsqueda avanzada" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Descripción" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL del stream:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Duración por defecto:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "No hay webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Cerrar" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "Nombre del Podcast: " - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "URL del Podcast: " - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "¿Descargar automáticamente los últimos episodios?" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "Programación:" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "Generar Bloque y Lista" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "Guardar podcast" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "URL del Feed RSS:" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "Mi Podcast" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "Guardar podcast de la estación" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "Ver Feed" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "Campos Generales" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Nombre" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Creador" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Idioma" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "Enlace" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "Campos de iTunes" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "Autor" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "Palabras clave" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "Sumario" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "Subtítulo" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "Categoría" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "Explícito" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "Ajustes de privacidad" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" +"Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n" +" %sCrear un show no enlazado ahora%s." -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Importación del archivo en progreso..." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'" -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "No tienes permiso para editar esta pista." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "Publicación" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "Editar Metadatos..." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Título:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creador:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "Publicar a:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "¡Ya has publicado esta pista en todas las fuentes disponibles!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "Las pistas publicadas se pueden quitar o actualizar a continuación." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "Publicado en:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "Despublicar" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "¡No has publicado esta pista en ninguna fuente!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "Marque las casillas de arriba y pulse 'Publicar' para publicar esta pista en las fuentes marcadas. " - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "Publicar" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Álbum:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Pista:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Duración:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Tasa de muestreo:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Tasa de bits:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Ánimo (mood):" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Género:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Año:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Sello:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Compositor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conductor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Derechos de autor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Número ISRC" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Sitio web:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Idioma:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Ruta del archivo:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Stream web" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Bloque inteligente dinámico" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Bloque inteligente estático" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Pista de audio" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Contenido de la lista de reproducción: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Contenido del bloque inteligente estático: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Criterios del bloque inteligente dinámico: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Límite hasta " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" -msgstr "%s Versión" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "Parece que el show actual necesita más pistas. %sAñadir pistas a tu show ahora%s" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "Servicio" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Estado" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s." -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Espacio en disco" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "Parece que no hay shows programados en este día." - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "Desarrollado por %s" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "Siguiente" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "anterior" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "reproducir" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pausa" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "siguiente" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "parar" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "silenciar" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "desenmudecer" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "volumen máximo" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Actualización Requerida" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Para reproducir estas pistas necesitarás actualizar tu navegador a una versión más reciente o atualizar tus plugin%s de %sFlash" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Creando la Plantilla de Resumen de Archivos" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Creando la Plantilla de Hoja de Registro" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Agregar ms elementos" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Agregar Nuevo Campo" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Establecer plantilla predeterminada" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "Plantillas de Historial de Reproducción" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Plantillas de Hoja de Registro" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Nueva Plantilla de Hoja de Registro" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "No hay Plantillas de Hoja de Registro" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Establecer predeterminado" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Plantillas de Resumen de Archivos" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Nueva Plantilla de Resumen de Archivos" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "No hay Plantillas de Resumen de Archivo" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Acerca de" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, El software de radio abierto para la programación y gestión remota de estaciones." - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s se distribuye bajo la %3$s" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "A continuación, te indicamos cómo empezar a utilizar %s para automatizar tus emisiones: " - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "Subir pistas de audio" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "Haz clic en el botón 'Subir' en la esquina izquierda para subir pistas a tu librería." - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "Programar un show" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "Haz clic en 'Calendario' en la barra de navegación de la izquierda. Desde ahí, clic en el botón '+ Nuevo Show' y rellene los campos solicitados." - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "Añadir pistas a tu Show" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "Haz clic en tu programa en el calendario y selecciona 'Programar Show'. En la ventana emergente, arrastra pistas a tu programa." - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "¡Ya estás listo!" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Para una ayuda más detallada, lee el manual%s del %susuario." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Stream en directo" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Compartir" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Selecciona stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "Prueba de Tabla" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Añadir este programa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Actualizar programa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Qué" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Cuándo" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "Lista Auto-Cargada" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Entrada de stream en vivo" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Quién" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Estilo" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Inicio" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Título" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Álbum" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Duración" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Género" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "Radio Web" + +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendario" + +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Sello" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Anterior:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Siguiente:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Streams fuente" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Escuchar" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Salir" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "Pistas" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Listas" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Bloques" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "Calendario Semanal" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "Vista previa:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Código embebible" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "Radio Reproductor de Facebook" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "Reproductor" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "Ha ocurrido un error." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" +msgstr "Calendario Semanal" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "¡Acceso Denegado!" +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "Ajustes" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "¡No tienes permiso para acceder a esta página!" +#: application/configs/navigation.php:74 +msgid "General" +msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "Mi Perfil" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Usuarios" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Estado" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "Estadísticas" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Historial de reproducción" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Plantillas Historial" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Estadísticas de oyentes" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Ayuda" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Cómo iniciar" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Manual para el usuario" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "¡Algo salió mal!" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "¡Página no encontrada!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "No pudimos encontrar la página que buscas." - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "¡Solicitud incorrecta!" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "¡No se admite la acción solicitada!" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "¡Parece que la página que buscas no existe!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Reproductor de audio" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Listas de reproducción" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "Bloque Inteligente" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" +#: application/configs/navigation.php:183 +msgid "What's New?" +msgstr "¿Qué hay de nuevo?" -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Establecer Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Establecer Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "%1$s copyright © %2$s Todos los derechos reservados.
Mantenido y distribuido bajo el %3$s por %4$s" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "No tienes permiso para desconectar la fuente." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "No hay fuente conectada a esta entrada." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "No tienes permiso para cambiar de fuente." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Por favor, introduce tu nombre de usuario y contraseña" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "Ese usuario o dirección de correo electrónico no se pudo encontrar" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste." - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "El usuario o la contraseña son incorrectos. Por favor intenta de nuevo." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream sin título" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Se almacenó el webstream" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Los valores en el formulario son inválidos." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Página no encontrada." - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "No se admite la acción solicitada." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "No tienes permiso para acceder a este recurso" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "Se ha producido un error de aplicación interno" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "¡Usuario añadido correctamente!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "¡Usuario actualizado correctamente!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "¡Configuración actualizada correctamente!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Previsualizar" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Elegir cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Eliminar cursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Eliminar" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "El show no existe" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Se actualizaron las preferencias." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Se actualizaron las configuraciones del stream." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "se debe especificar la ruta" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Hay un problema con Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "Método de solicitud no aceptado" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "No se han publicado pistas todavía." - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "No se encontró %s" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Algo salió mal." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Agregar a lista de reproducción." - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Agregar un bloque inteligente" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "Editar..." - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Descargar" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplicar lista de reproducción" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "No hay acción disponible" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "No tienes permiso para eliminar los elementos seleccionados." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "No se pudo eliminar el archivo porque está programado en el futuro" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "No se pudo eliminar el archivo(s)." - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Copia de %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Verifica que la contraseña del usuario admin. esté correcta en Sistema->página de streams." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "No tienes permiso para acceder a este recurso." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "No tienes permiso para acceder a este recurso. " -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "El archivo no existe en %s" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Solicitud incorrecta. No se pasa el parámetro 'mode'." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Solicitud incorrecta. El parámetro 'mode' pasado es inválido" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "No tienes permiso para desconectar la fuente." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "No hay fuente conectada a esta entrada." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "No tienes permiso para cambiar de fuente." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" @@ -1889,7 +835,7 @@ msgstr "" " 1. Habilitar al menos un stream MP3, AAC, or OGG en Ajustes -> Streams
\n" " 2. Habilitar la API pública de Libretime en Ajustes -> Preferencias" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" @@ -1897,7 +843,7 @@ msgstr "" "Para utilizar el calendario semanal incrustable debes:

\n" " Habilitar la API pública de Libretime en Ajustes -> Preferencias" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" @@ -1905,600 +851,765 @@ msgstr "" "Para añadir la pestaña Radio a tu página de Facebook, debes primero:

\n" " Habilitar la API pública de Libretime en Ajustes -> Preferencias" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Página no encontrada." + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "No se admite la acción solicitada." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "No tienes permiso para acceder a este recurso" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "Se ha producido un error de aplicación interno" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Estas viendo una versión antigua de %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "No puedes añadir pistas a los bloques dinámicos." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "No se han publicado pistas todavía." -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "No tienes permiso para eliminar los %s(s) seleccionados." +msgid "%s not found" +msgstr "No se encontró %s" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Solo puedes añadir pistas a los bloques inteligentes." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Algo salió mal." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Previsualizar" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Lista de reproducción sin nombre" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Agregar a lista de reproducción." -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Bloque inteligente sin nombre" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Agregar un bloque inteligente" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Lista de reproducción desconocida" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Eliminar" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "Editar..." + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Descargar" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplicar lista de reproducción" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "No hay acción disponible" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "No tienes permiso para eliminar los elementos seleccionados." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "No se pudo eliminar el archivo porque está programado en el futuro" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "No se pudo eliminar el archivo(s)." + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Copia de %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Verifica que la contraseña del usuario admin. esté correcta en Sistema->página de streams." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Reproductor de audio" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "¡Algo salió mal!" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Grabando:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Stream maestro" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Stream en vivo" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Nada programado" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Show actual:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Actual" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Estás usando la versión más reciente" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Nueva versión disponible: " -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "Tienes una versión pre-lanzamiento de LibreTime instalada." -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "Hay disponible una actualización de parche para la instalación de LibreTime." -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "Hay disponible una actualización de funcionalidad para su instalación de LibreTime." -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "Hay disponible una actualización importante para su instalación de LibreTime." -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "Existen varias actualizaciones importantes para la instalación de LibreTime. Actualiza lo antes posible." -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Añadir a la lista de reproducción actual" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Añadir al bloque inteligente actual" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Añadiendo 1 item" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Añadiendo %s ítems" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Solo puedes añadir pistas a bloques inteligentes" -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Solo puedes añadir pistas, bloques inteligentes y webstreams a listas de reproducción." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Indica tu selección en la lista de reproducción actual." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "No has añadido ninguna pista." -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "No has añadido ninguna lista de reproducción" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "No has añadido ningún podcast" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "No has añadido ningún bloque inteligente" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "No has añadido ningún webstream" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "Aprenda sobre pistas" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "Aprenda sobre listas de reproducción" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "Aprenda sobre podcasts" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "Aprenda sobre bloques inteligentes" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "Aprenda sobre webstreams" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "Clic 'Nuevo' para crear uno." -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Añadir" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "Nuevo" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Editar" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "Añadir al show próximo" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "Añadir al show próximo" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "Añadir al show actual" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Publicar" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Eliminar" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Editar metadatos" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Añadir al show seleccionado" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Seleccionar" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Seleccionar esta página" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Deseleccionar esta página" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Deseleccionar todo" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "¿De verdad quieres eliminar los ítems seleccionados?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Programado" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Pistas" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Listas de reproducción" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Título" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Creador" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Álbum" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Tasa de bits" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Compositor" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Director" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Codificado por" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Género" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Sello" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Idioma" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Ult.Modificado" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Ult.Reproducido" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Duración" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Estilo (mood)" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Propietario" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Ganancia" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Núm.Pista" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Subido" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Sitio web" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Año" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Cargando..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Todo" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Archivos" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listas" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Bloques" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web streams" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Tipo desconocido: " -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "¿De verdad deseas eliminar el ítem seleccionado?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Carga en progreso..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Recolectando data desde el servidor..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "Importar" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "Importado?" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "Ver" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Código de error:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Msg de error: " -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "La entrada debe ser un número positivo" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "La entrada debe ser un número" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "La entrada debe estar en el siguiente formato: dd-mm-yyyy" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "La entrada debe estar en el siguiente formato: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Mi Podcast" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Actualmente estas subiendo archivos. %sSi cambias de pantalla el proceso de carga se cancelará. %s¿De verdad quieres dejar esta página e ir a otra?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Abrir Media Builder" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "Por favor introduce un tiempo '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "Por favor introduce un tiempo en segundos válido. Ej. 0.5" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Tu navegador no soporta la reproducción de este tipo de archivos: " -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Los bloques dinámicos no se pueden previsualizar" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Limitado a: " -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Se guardó la lista de reproducción" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Lista de reproducción mezclada" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Libretime no está seguro del estado de este archivo. Esto puede ocurrir cuando el archivo está en un disco remoto no accesible o el archivo está en un directorio que ya no está 'monitorizado'." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Conteo de oyentes en %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Recuérdame en 1 semana" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Nunca recordarme" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Sí, ayudar a Libretime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "La imagen debe ser jpg, jpeg, png, o gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Un bloque inteligente estático almacenará los criterios y generará el contenido del bloque inmediatamente. Esto te permite editarlo y verlo en la biblioteca antes de agregarlo a un show." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Un bloque inteligente dinámico sólo guardará los criterios. El contenido del bloque será generado al agregarlo a un show. No podrás ver ni editar el contenido en la Biblioteca." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Se reprodujo el bloque inteligente de forma aleatoria" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Bloque inteligente generado y criterios guardados" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Bloque inteligente guardado" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Procesando..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Elige modificador" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "contiene" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "no contiene" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "es" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "no es" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "empieza con" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "termina con" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "es mayor que" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "es menor que" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "está en el rango de" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Generar" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Elegir carpeta de almacenamiento" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Elegir carpeta a monitorizar" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2506,1741 +1617,1701 @@ msgstr "" "¿Estás seguro de querer cambiar la carpeta de almacenamiento?\n" " ¡Esto eliminará los archivos de tu biblioteca de Airtime!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Administrar las Carpetas de Medios" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "¿Estás seguro de que quieres quitar la carpeta monitorizada?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Esta ruta es actualmente inaccesible." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Algunos tipos de stream requieren configuración adicional. Se proporcionan detalles sobre la activación de %sSoporte AAC+%s o %sSoporte Opus%s." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Conectado al servidor de streaming" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Se desactivó el stream" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Obteniendo información desde el servidor..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "No es posible conectar el servidor de streaming" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Elige esta opción para activar los metadatos de los streams OGG (los metadatos del stream incluyen información de la pista como título, artista y nombre del show, los cuales se desplegarán en el reproductor de audio). VLC y mplayer muestran un bug serio cuando reproducen streams OGG/VORBIS que tienen los metadatos activados: se desconectarán del stream después de cada pista. Si estas usando un stream OGG y tus oyentes no requieren soporte para estos reproductores de audio, entonces activa esta opción." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Elige esta opción para desactivar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Elige esta opción para activar automáticamente la fuente maestra/del show cuando ocurra una desconexión de la fuente." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Si tu servidor de Icecast te pide un usuario para la 'source' (fuente), puedes dejar este campo en blanco." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Si tu cliente de streaming en vivo no te pide un usuario, este campo debe ser la 'source' (fuente)." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "¡ADVERTENCIA: Esto reiniciará tu stream y puede ocasionar la desconexión de tus oyentes!" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Este es el usuario y contraseña administrativa de Icecast/SHOUTcast para obtener las estadísticas de oyentes." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Advertencia: No puedes cambiar este campo mientras se está reproduciendo el show" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Sin resultados" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Esto sigue el mismo patrón de seguridad de los shows: solo pueden conectar los usuarios asignados al show." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Especifique una autenticación personalizada que funcione solo para este show." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "¡La instancia de este show ya no existe!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Advertencia: Los shows no pueden re-enlazarse" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Al vincular tus shows repetidos, cualquier elemento multimedia programado en cualquiera de los shows repetidos también se programará en el resto de shows repetidos" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "La zona horaria se establece de forma predeterminada en la zona horaria de la estación. Los shows en el calendario se mostrarán en su hora local, definida por la zona horaria de la Interfaz en tu configuración de usuario." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Show" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "El show está vacío" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Recopilando información desde el servidor..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Este show no cuenta con contenido programado." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "A este show le falta contenido. " -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Enero" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Febrero" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Marzo" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Abril" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Mayo" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Junio" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Julio" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Agosto" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Septiembre" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Octubre" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Noviembre" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Diciembre" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Ene" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Feb" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Abr" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Jun" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Jul" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Ago" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Sep" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Oct" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dic" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "Hoy" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "Día" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "Semana" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "Mes" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Domingo" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Lunes" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Martes" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Miércoles" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Jueves" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Viernes" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Sábado" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Dom" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Lun" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Mie" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Jue" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Vie" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sab" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Los shows más largos que su segmento programado serán cortados por el show que le sigue." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "¿Cancelar el show actual?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "¿Detener la grabación del show actual?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ok" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Contenidos del show" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "¿Eliminar todo el contenido?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "¿Eliminar los ítems seleccionados?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Inicio" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Final" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Duración" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "Filtrando " -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr " de " -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr " registros" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "No hay shows programados durante el período de tiempo especificado." -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Show vacío" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Grabando desde la entrada" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Previsualización de la pista" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "No es posible programar un show externo." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Moviendo 1 ítem" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Moviendo %s ítems." -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Guardar" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancelar" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Editor de desvanecimiento" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Editor de Cue" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Las funciones de forma de onda están disponibles en navegadores que admitan la API Web Audio" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Seleccionar todos" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Seleccionar uno" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "Recortar exceso de shows" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Eliminar los ítems programados seleccionados" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Saltar a la pista en reproducción actual" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "Saltar a la pista actual" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Cancelar el show actual" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Abrir biblioteca para agregar o eliminar contenido" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Agregar / eliminar contenido" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "en uso" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disco" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Buscar en" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Abrir" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Admin" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Administrador de programa" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Invitado" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Los invitados pueden hacer lo siguiente:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Ver programación" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Ver contenido del show" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "Los DJ pueden hacer lo siguiente:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Administrar el contenido del show asignado" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Importar archivos de medios" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Crear listas de reproducción, bloques inteligentes y webstreams" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Administrar su propia biblioteca de contenido" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Ver y administrar contenido del show" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Programar shows" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Administrar el contenido de toda la biblioteca" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Los administradores pueden:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Administrar preferencias" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Administrar usuarios" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Administrar carpetas monitorizadas" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Enviar opinión de soporte" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Ver el estado del sistema" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Acceder al historial de reproducción" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Ver estadísticas de oyentes" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Mostrar / ocultar columnas" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "Columnas" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "De {from} para {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "dd-mm-yyyy" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Do" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Lu" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Ma" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Mi" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Ju" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Vi" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Sa" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Cerrar" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Hora" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuto" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Hecho" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Seleccione los archivos" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Añade los archivos a la cola de carga y haz clic en el botón de iniciar." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Añadir archivos" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Detener carga" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Iniciar carga" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Añadir archivos" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Archivos %d/%d cargados" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "No disponible" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Arrastra los archivos a esta área." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Error de extensión del archivo." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Error de tamaño del archivo." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Error de cuenta del archivo." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Error de inicialización." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "Error de HTTP." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Error de seguridad." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Error genérico." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "Error IO." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Archivo: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d archivos en cola" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Archivo: %f, tamaño: %s, tamaño máximo del archivo: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Puede que el URL de carga no esté funcionando o no exista" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Error: el archivo es demasiado grande:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Error: extensión de archivo inválida:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Establecer predeterminado" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Crear Entrada" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Editar historial" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "No hay Show" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "Se copiaron %s celda%s al portapapeles" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "Vista%s de %simpresión Por favor usa tu navegador para imprimir esta tabla. Presiona escape cuando termines." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "Nuevo Show" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "Nueva entrada de registro" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "Siguiente" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "Despublicar" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "Autor" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Descripción" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "Enlace" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "Importado correctamente" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Activado" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Desactivado" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "Bloque Inteligente" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "Nada programado" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "Por favor, introduce tu nombre de usuario y contraseña" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "Ese usuario o dirección de correo electrónico no se pudo encontrar" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste." + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "El usuario o la contraseña son incorrectos. Por favor intenta de nuevo." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Estas viendo una versión antigua de %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "No puedes añadir pistas a los bloques dinámicos." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "No tienes permiso para eliminar los %s(s) seleccionados." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Solo puedes añadir pistas a los bloques inteligentes." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Lista de reproducción sin nombre" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Bloque inteligente sin nombre" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Lista de reproducción desconocida" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Se actualizaron las preferencias." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Se actualizaron las configuraciones del stream." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "se debe especificar la ruta" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Hay un problema con Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "Método de solicitud no aceptado" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Retransmitir el show %s de %s a %s " -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Elegir cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Eliminar cursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "El show no existe" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "No existe el archivo" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Ver los metadatos del archivo grabado" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Programar pistas" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Vaciar Show" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "Cancelar Show" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "Editar instancia" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Editar Show" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "Eliminar instancia" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "Eliminar instancia y todas las siguientes" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "No es posible arrastrar y soltar shows que se repiten" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "No se puede mover un show pasado" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "No se puede mover un show al pasado" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "No se pueden programar shows traslapados" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "¡El show se eliminó porque el show grabado no existe!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Debe esperar 1 hora para retransmitir." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Pista" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Hora de Inicio" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "¡Usuario añadido correctamente!" -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Hora de Finalización" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "¡Usuario actualizado correctamente!" -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Reproducido" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "¡Configuración actualizada correctamente!" -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Webstream sin título" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Se almacenó el webstream" + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Los valores en el formulario son inválidos." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Se introdujo un caracter inválido" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Se debe especificar un día" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Se debe especificar una hora" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Debes esperar al menos 1 hora para reprogramar" + +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "¿Programar Lista Auto-Cargada?" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Seleccionar Lista" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "Repitir lista hasta que termine el programa?" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Seleccionar criterio" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Tasa de bits (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Tasa de muestreo (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "horas" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minutos" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "elementos" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "Aleatorio" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "Más nuevo" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "Más antiguo" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "Tipo:" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinámico" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Estático" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "Permitir Pistas Repetidas:" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "Ordenar Pistas:" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "Limitar a:" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generar contenido para la lista de reproducción y guardar criterios" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "El límite no puede estar vacío o ser menor que 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "El límite no puede ser mayor a 24 horas" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "El valor debe ser un número entero" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 es el valor máximo de ítems que se pueden configurar" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Debes elegir Criterios y Modificador" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' " - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "El valor debe ser numérico" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "El valor debe ser menor a 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "El valor debe ser menor que %s caracteres" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "El valor no puede estar vacío" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Número ISRC:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "Publicar..." - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Carpeta de importación:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Carpetas monitorizadas:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "No es un directorio válido" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Enlace:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Tipo de repetición:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "semanal" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "cada 2 semanas" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "cada 3 semanas" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "cada 4 semanas" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "mensual" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Seleccione días:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Repetir por:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "día del mes" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "día de la semana" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Fecha de Finalización:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "¿Sin fin?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "La fecha de finalización debe ser posterior a la inicio" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Por favor, selecciona un día de repeticón" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "El valor es necesario y no puede estar vacío" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "Hora de inicio:" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "En el Futuro:" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "Hora de fin:" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Zona horaria:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "¿Se repite?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "No puedes crear un show en el pasado" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "La fecha/hora de finalización no puede estar en el pasado." - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "No puede tener una duración < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "No puede tener una duración 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "No puede tener una duración mayor a 24 horas" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Usuario:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Contraseña:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Verificar contraseña:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Nombre:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Apellido:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Teléfono móvil:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Tipo de usuario:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "El nombre de usuario no es único." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "Usar la autenticación %s:" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Usar la autenticación personalizada:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Usuario personalizado" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Contraseña personalizada" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "Puerto:" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "Montaje:" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "El campo de usuario no puede estar vacío." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "El campo de contraseña no puede estar vacío." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Idioma de la Estación" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "¿Grabar desde la entrada (line in)?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Zona horaria de la Estación" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "¿Reprogramar?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Privacidad del Feed" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "días" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "Público" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Enlace:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "Privado" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tipo de repetición:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Fecha de Inicio:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "semanal" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Se introdujo un caracter inválido" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "cada 2 semanas" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Buscar usuarios:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "cada 3 semanas" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "cada 4 semanas" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Filtrar por Show" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensual" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Todos mis shows:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Seleccione días:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Mis Shows" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Repetir por:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "día del mes" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "día de la semana" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Fecha de Finalización:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "¿Sin fin?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "La fecha de finalización debe ser posterior a la inicio" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Por favor, selecciona un día de repeticón" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Color de fondo:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Color del texto:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "Loco actual:" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "Logo del Show:" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "Vista previa del Logo:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Se debe especificar un día" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nombre:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Se debe especificar una hora" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Debes esperar al menos 1 hora para reprogramar" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Show sin nombre" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Género:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Descripción:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "Descripcin de instancia:" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Hora de inicio:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "En el Futuro:" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "Hora de fin:" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Duración:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Zona horaria:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "¿Se repite?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "No puedes crear un show en el pasado" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "La fecha/hora de finalización no puede estar en el pasado." + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "No puede tener una duración < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "No puede tener una duración 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "No puede tener una duración mayor a 24 horas" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "No se pueden programar shows traslapados" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Buscar usuarios:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Usuario:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Contraseña:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Verificar contraseña:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Nombre:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Apellido:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Teléfono móvil:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Tipo de usuario:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "El nombre de usuario no es único." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Eliminar todas las pistas de la biblioteca" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Fecha de Inicio:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Título:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Creador:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Álbum:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Año:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Sello:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Compositor:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Ánimo (mood):" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Derechos de autor:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "Número ISRC:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Sitio web:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Idioma:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "Publicar..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Hora de Inicio" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Hora de Finalización" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Zona horaria de la interfaz:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Nombre de la estación" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "Descripción de la estación" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo de la estación:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Nota: Cualquiera mayor que 600x600 será redimensionada." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Duración predeterminada del Crossfade (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "Por favor, escribe un valor en segundos (eg. 0.5)" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Fade In perdeterminado (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Fade Out preseterminado (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Sobrescribir el álbum del podcast" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum." -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "API Pública de Libretime" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Requerido para el widget de programación incrustado" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." @@ -4248,1117 +3319,601 @@ msgstr "" "Habilitar esta función permite a Libretime proporcionar datos de programación\n" " a widgets externos que se pueden integrar en tu sitio web." -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "URL CORS permitidas" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "URL remotas a las que se les permite acceder a esta instancia de LibreTime en un navegador. Una URL por línea." -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Idioma predeterminado" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Zona horaria de la Estación" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "La semana empieza el" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "¿Mostrar el botón de inicio de sesión en su página de radio?" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "¿Grabar desde la entrada (line in)?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "¿Reprogramar?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Restablecer contraseña" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "Auto apagado" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "Auto encendido" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "Transición de desvanecimiento (s):" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "Host Fuente Maestro:" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "Puerto Fuente Maestro:" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Solo se permiten números." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "Montaje Fuente Maestro:" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "Host Fuente del Show:" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "Puerto Fuente del Show:" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "Montaje Fuente del Show:" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Iniciar sesión" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Contraseña" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Confirma nueva contraseña" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "La confirmación de la contraseña no coincide con tu contraseña." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Eliminar todas las pistas de la biblioteca" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Usuario" -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Restablecer contraseña" -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Atrás" -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "días" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Activado:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Móvil:" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Tipo de stream:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tipo de servicio:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Canales:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Estéreo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Servidor" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Puerto" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Punto de montaje" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Usuario administrativo" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Contraseña administrativa" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "El servidor no puede estar vacío." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "El puerto no puede estar vacío." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "El montaje no puede estar vacío con el servidor Icecast." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Zona horaria de la interfaz:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Reproduciéndose ahora" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "Seleccionar Stream:" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "Autodetectar el stream más apropiado a reproducir." -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "Selecciona un stream:" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr " - El reproductor no soporta streams Opus." -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "Código embebible" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio." -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "¿Actualizar metadatos de tu estación en TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "Vista previa:" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID Estación:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Privacidad del Feed" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Clave Socio:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Público" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Id Socio:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privado" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "Idioma de la Estación" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "Filtrar por Show" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' no se ajusta al formato de fecha '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Todos mis shows:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' tiene menos de %min% caracteres" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "Mis Shows" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' tiene más de %max% caracteres" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Seleccionar criterio" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' no está entre '%min%' y '%max%', inclusive" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Tasa de bits (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Tasa de muestreo (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "horas" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutos" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "elementos" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Aleatorio" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Más nuevo" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Más antiguo" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Tipo:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinámico" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Estático" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "Permitir Pistas Repetidas:" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "Ordenar Pistas:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Limitar a:" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generar contenido para la lista de reproducción y guardar criterios" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Reproducción aleatoria" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "El límite no puede estar vacío o ser menor que 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "El límite no puede ser mayor a 24 horas" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "El valor debe ser un número entero" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 es el valor máximo de ítems que se pueden configurar" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Debes elegir Criterios y Modificador" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' " + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "El valor debe ser numérico" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "El valor debe ser menor a 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "El valor debe ser menor que %s caracteres" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "El valor no puede estar vacío" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "Salida Hardware Audio:" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "Tipo de Salida" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Metadata Icecast Vorbis" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Etiqueta del stream:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Artísta - Título" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Show - Artista - Título" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Nombre de la estación - nombre del show" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Metadatos Off Air" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Activar ajuste del volumen" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Modificar ajuste de volumen" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "Servidor de Streaming:" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "Streaming por defecto" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "Transmisión personalizada / de terceros" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "El año %s debe estar dentro del rango de 1753-9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s no es una fecha válida" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s no es una hora válida" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "Cargue algunas pistas para agregarlas a su biblioteca." - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Parece que aún no has subido ningún archivo de audio. %sSube un archivo ahora%s" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Haga clic en el botón 'Nuevo Show' y rellene los campos requeridos." - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Parece que no tienes shows programados. %sCrea un show ahora%s." - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Para iniciar la transmisión, cancela el programa enlazado actual haciendo clic en él y seleccionando 'Cancelar show'." - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"Los shows enlazados deben rellenarse de pistas antes de comenzar. Para iniciar la emisión, cancela el show enlazado actual y programa un show no enlazado.\n" -" %sCrear un show no enlazado ahora%s." - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Para iniciar la transmisión, haz clic en el programa actual y selecciona 'Programar Pistas'" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "Parece que el show actual necesita más pistas. %sAñadir pistas a tu show ahora%s" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Haz clic en el show que comienza a continuación y selecciona 'Programar pistas'" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Parece que el próximo show está vacío. %sAñadir pistas a tu programa ahora%s." - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "Streaming por defecto" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Activado:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "Móvil:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Tipo de stream:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Tasa de bits:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Tipo de servicio:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Canales:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Estéreo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Servidor" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Puerto" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Nombre" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Punto de montaje" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Usuario administrativo" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Contraseña administrativa" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "El servidor no puede estar vacío." -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "El puerto no puede estar vacío." -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "El montaje no puede estar vacío con el servidor Icecast." -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "¿Actualizar metadatos de tu estación en TuneIn?" -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID Estación:" -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Clave Socio:" -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Id Socio:" -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo." -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Carpeta de importación:" -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Carpetas monitorizadas:" -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "No es un directorio válido" -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "El valor es necesario y no puede estar vacío" -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname" -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' no se ajusta al formato de fecha '%format%'" -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' tiene menos de %min% caracteres" -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' tiene más de %max% caracteres" -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' no está entre '%min%' y '%max%', inclusive" -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Usar el predeterminado de la estación" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in y cue out son nulos." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "No se puede asignar un cue in mayor al cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "No se puede asignar un cue out mayor que la duración del archivo." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "No se puede asignar un cue out menor que el cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "La duración debe ser mayor de 0 minutos" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "La duración debe estar en el formato \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "El URL debe estar en el formato \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "El URL debe ser de 512 caracteres o menos" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "No se encontró ningún tipo MIME para el webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "El nombre del webstream no puede estar vacío" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "No se pudo procesar el XSPF de la lista de reproducción" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "No se pudo procesar el XSPF de la lista de reproducción" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "No se pudo procesar el M3U de la lista de reproducción" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Webstream inválido - Esto parece ser una descarga de archivo." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Tipo de stream no reconocido: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Retransmisión de %s desde %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Seleccionar país" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "No se pueden mover elementos de los shows enlazados" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "¡La programación que estás viendo está desactualizada! (desfase de instancia)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "¡La programación que estás viendo está desactualizada!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "No tienes permiso para programar el show %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "No puedes agregar pistas a shows en grabación." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "El show %s terminó y no puede ser programado." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "¡El show %s ha sido actualizado anteriormente!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "No se puede programar una lista de reproducción que contenga archivos perdidos." - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "¡Un Archivo seleccionado no existe!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s ya está siendo monitorizado." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contiene un directorio anidado monitorizado: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s está anidado dentro de un directorio monitorizado existente: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s no es un directorio válido." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s no existe en la lista de monitorización." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "Ninguno" - -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5369,7 +3924,7 @@ msgstr "" "\n" "Haz clic en este enlace para restablecer tu contraseña: " -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5380,7 +3935,7 @@ msgstr "" "\n" "Si tienes algún problema, ponte en contacto con nuestro equipo de asistencia: %s" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5393,20 +3948,138 @@ msgstr "" "Gracias,\n" "El equipo %s" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s Restablecimiento de Contraseña" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in y cue out son nulos." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "No se puede asignar un cue out mayor que la duración del archivo." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "No se puede asignar un cue in mayor al cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "No se puede asignar un cue out menor que el cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "Hora de Subida" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "Ninguno" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s ya está siendo monitorizado." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contiene un directorio anidado monitorizado: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s está anidado dentro de un directorio monitorizado existente: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s no es un directorio válido." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s ya está asignado como el directorio actual de almacenamiento o en la lista de carpetas monitorizadas." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s no existe en la lista de monitorización." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "Desarrollado por %s" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Seleccionar país" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "No se pueden mover elementos de los shows enlazados" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "¡El calendario que tienes a la vista no está actualizado! (sched mismatch)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "¡La programación que estás viendo está desactualizada! (desfase de instancia)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "¡La programación que estás viendo está desactualizada!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "No tienes permiso para programar el show %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "No puedes agregar pistas a shows en grabación." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "El show %s terminó y no puede ser programado." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "¡El show %s ha sido actualizado anteriormente!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "¡El contenido de los programas enlazados no se puede cambiar mientras se está en el aire!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "No se puede programar una lista de reproducción que contenga archivos perdidos." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "¡Un Archivo seleccionado no existe!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Los shows pueden tener una duración máxima de 24 horas." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5414,156 +4087,281 @@ msgstr "" "No se pueden programar shows solapados.\n" "Nota: Cambiar el tamaño de un show periódico afecta todas sus repeticiones." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "Hora de Subida" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Retransmisión de %s desde %s" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "Radio Web" +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "La duración debe ser mayor de 0 minutos" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendario" +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "La duración debe estar en el formato \"00h 00m\"" -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "El URL debe estar en el formato \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "El URL debe ser de 512 caracteres o menos" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "No se encontró ningún tipo MIME para el webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "El nombre del webstream no puede estar vacío" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "No se pudo procesar el XSPF de la lista de reproducción" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "No se pudo procesar el XSPF de la lista de reproducción" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "No se pudo procesar el M3U de la lista de reproducción" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Webstream inválido - Esto parece ser una descarga de archivo." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Tipo de stream no reconocido: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "No existe el archivo" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Ver los metadatos del archivo grabado" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Programar pistas" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "Vaciar Show" + +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "Cancelar Show" + +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "Editar instancia" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Editar Show" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "Eliminar instancia" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "Eliminar instancia y todas las siguientes" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Permiso denegado" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "No es posible arrastrar y soltar shows que se repiten" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "No se puede mover un show pasado" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "No se puede mover un show al pasado" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "¡El show se eliminó porque el show grabado no existe!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Debe esperar 1 hora para retransmitir." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Pista" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Reproducido" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "Ajustes" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Usuarios" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "Estadísticas" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Plantillas Historial" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Estadísticas de oyentes" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Cómo iniciar" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Manual para el usuario" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "¿Qué hay de nuevo?" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "¡No se pudo conectar con el servidor RabbitMQ! Comprueba si el servidor se está ejecutando y tus credenciales son correctas." -#~ msgid "FAQ" -#~ msgstr "PMF" +#~ msgid " to " +#~ msgstr " para " -#~ msgid "View track" -#~ msgstr "Ver pista" +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s se distribuye bajo la %3$s" -#~ msgid "Update track" -#~ msgstr "Actualizar pista" +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, El software de radio abierto para la programación y gestión remota de estaciones." -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "La duración deseada para el bloque no se alcanzará si Libretime no puede encontrar suficientes pistas únicas que se ajusten a tus criterios. Activa esta opción si deseas que se agreguen pistas varias veces al bloque inteligente." +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s copyright © %2$s Todos los derechos reservados.
Mantenido y distribuido bajo el %3$s por %4$s" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Si Airtime está detrás de un router o firewall, posiblemente tengas que configurar una redirección en el puerto (port forwarding) y esta información de campo será incorrecta. En este caso necesitarás actualizar manualmente el campo pra que muestre el host/port/mount correcto al que tus DJs necesitan conectarse. El rango permitido es entre 1024 y 49151. " +#, php-format +#~ msgid "%s Version" +#~ msgstr "%s Versión" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Para más detalles, por favor lee el %sManual de Airtime%s" +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Para poder promocionar tu estación, 'Send support feedback' (Enviar opinión de soporte) debe estar activado)." -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Los encargados de programa pueden hacer lo siguiente:" +#~ msgid "(Required)" +#~ msgstr "(Requerido)" -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Bienvenido al nuevo Airtime Pro!" +#~ msgid "(Your radio station website)" +#~ msgstr "(El sitio web de tu estación)" -#~ msgid "Support setting updated." -#~ msgstr "Se actualizaron las configuraciones de soporte." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(únicamente para fines de verificación, no será publicado)" -#~ msgid "Support Feedback" -#~ msgstr "Opinión de soporte" +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Se ha enviado un enlace de restablecimiento de contraseña a tu dirección de correo electrónico. Por favor, comprueba tu correo electrónico y sigue las instrucciones para restablecer tu contraseña. Si no ves el correo electrónico, comprueba tu carpeta de correo no deseado" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Escribe los caracteres que ves en la imagen que aparece a continuación." +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Al programar este bloque inteligente en un programa se generará una lista de reproduccin " -#~ msgid "Phone:" -#~ msgstr "Teléfono:" +#~ msgid "About" +#~ msgstr "Acerca de" -#~ msgid "Station Web Site:" -#~ msgstr "Sitio web de la estación:" +#~ msgid "Access Denied!" +#~ msgstr "¡Acceso Denegado!" -#~ msgid "Country:" -#~ msgstr "País:" +#~ msgid "Add New Field" +#~ msgstr "Agregar Nuevo Campo" -#~ msgid "City:" -#~ msgstr "Ciudad:" +#~ msgid "Add more elements" +#~ msgstr "Agregar ms elementos" -#~ msgid "Station Description:" -#~ msgstr "Descripción de la estación:" +#~ msgid "Add this show" +#~ msgstr "Añadir este programa" -#~ msgid "Promote my station on %s" -#~ msgstr "Promocionar mi estacin en %s" +#~ msgid "Add tracks to your show" +#~ msgstr "Añadir pistas a tu Show" -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Al marcar esta casilla, estoy de acuerdo con %s %spolítica de privacidad%s." +#~ msgid "Additional Options" +#~ msgstr "Opciones adicionales" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Debes aceptar las políticas de privacidad." +#~ msgid "Advanced Search Options" +#~ msgstr "Opciones de búsqueda avanzada" -#~ msgid "Default License:" -#~ msgstr "Licencia por defecto:" +#~ msgid "Airtime Pro has a new look!" +#~ msgstr "¡Airtime Pro has a new look!" #~ msgid "All rights are reserved" #~ msgstr "Todos los derechos reservados" -#~ msgid "The work is in the public domain" -#~ msgstr "El trabajo es de dominio público" +#~ msgid "An error has occurred." +#~ msgstr "Ha ocurrido un error." + +#~ msgid "Audio Track" +#~ msgstr "Pista de audio" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Lista Auto-Cargada" + +#~ msgid "Bad Request!" +#~ msgstr "¡Solicitud incorrecta!" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Al marcar esta casilla, estoy de acuerdo con %s %spolítica de privacidad%s." + +#~ msgid "Category" +#~ msgstr "Categoría" + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "Marque las casillas de arriba y pulse 'Publicar' para publicar esta pista en las fuentes marcadas. " + +#~ msgid "Choose Days:" +#~ msgstr "Elige los días:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Selecciona Instancia del Show" + +#~ msgid "Choose folder" +#~ msgstr "Selecciona carpeta" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Selecciona algunos criterios de búsqueda y haz clic en Generar para crear esta lista de reproducción." + +#~ msgid "City:" +#~ msgstr "Ciudad:" + +#~ msgid "Clear" +#~ msgstr "Vaciar" + +#~ msgid "Click 'Add' to create one." +#~ msgstr "Clic 'Añadir' para crear uno." + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Haz clic en 'Calendario' en la barra de navegación de la izquierda. Desde ahí, clic en el botón '+ Nuevo Show' y rellene los campos solicitados." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Haz clic en tu programa en el calendario y selecciona 'Programar Show'. En la ventana emergente, arrastra pistas a tu programa." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Haz clic en el botón 'Subir' en la esquina izquierda para subir pistas a tu librería." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Haz clic en el cuadro de abajo para promocionar tu estación en %s." + +#~ msgid "Country:" +#~ msgstr "País:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Creando la Plantilla de Resumen de Archivos" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Creando la Plantilla de Hoja de Registro" #~ msgid "Creative Commons Attribution" #~ msgstr "Atribución Creative Commons" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Atribución-NoComercial Creative Commons" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Atribución-sinDerivadas Creative Commons" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Atribución-CompartirIgual Creative Commons" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Atribución-NoComercial Creative Commons" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Atribución-NoComercial-SinDerivadas Creative Commons" @@ -5571,42 +4369,11 @@ msgstr "¡No se pudo conectar con el servidor RabbitMQ! Comprueba si el servidor #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Atribución-NoComercial-CompartirIgual Creative Commons" -#~ msgid "Default Sharing Type:" -#~ msgstr "Tipo de Compartir predeterminada" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Atribución-CompartirIgual Creative Commons" -#~ msgid "Airtime Pro has a new look!" -#~ msgstr "¡Airtime Pro has a new look!" - -#~ msgid "" -#~ "Your favorite features are now even easier to use - and we've even\n" -#~ " added a few new ones! Check out the video above or read on to find out more." -#~ msgstr "" -#~ "Tus funciones favoritas son ahora aún más fáciles de usar - ¡e incluso hemos\n" -#~ " añadido algunas nuevas! Echa un vistazo al video de arriba o sigue leyendo para obtener más información." - -#~ msgid "" -#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -#~ " is easier than ever." -#~ msgstr "" -#~ "Nuestra nueva vista Dashboard tiene ahora una poderosa interfaz de edición por pestañas, por lo que la actualización de tus pistas y listas de reproducción\n" -#~ " es más sencillo que nunca." - -#~ msgid "" -#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -#~ " just a click away, you'll be on air and hands-free in no time." -#~ msgstr "" -#~ "Hemos simplificado la interfaz de Airtime para facilitar la navegación. Con las herramientas más importantes\n" -#~ " a un clic de distancia, estarás en el aire y manos libres en un momento." - -#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -#~ msgstr "¿Tienes una biblioteca de música enorme? ¡No hay problema! Con la nueva página de Subida, puedes arrastrar carpetas enteras a nuestra nube privada." - -#~ msgid "" -#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -#~ " experience, no matter how you're connected." -#~ msgstr "" -#~ "El nuevo Airtime es más suave, elegante y rápido, ¡incluso en más dispositivos! Estamos comprometidos a mejorar la experiencia\n" -#~ " con Airtime, sin importar cómo te conectes." +#~ msgid "Current Import Folder:" +#~ msgstr "Carpeta actual de importación:" #~ msgid "" #~ "Customize the player by configuring the options below. When you are done,\n" @@ -5615,44 +4382,95 @@ msgstr "¡No se pudo conectar con el servidor RabbitMQ! Comprueba si el servidor #~ "Personaliza el reproductor configurando las opciones siguientes. Cuando hayas terminado,\n" #~ " copia el código incrustado más abajo y pégalo en el HTML de tu sitio web." -#~ msgid "Register Airtime" -#~ msgstr "Registrar Airtime" +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "Los DJs pueden usar estos ajustes en su software de difusión para transmitir en directo sólo durante los programas que se les asignan." -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Ayuda a mejorar %s informándonos de cómo lo estás utilizando. Esta información se recopilará con regularidad para mejorar tu experiencia de usuario.
Haz clic en la casilla de abajo y nos aseguraremos de mejorar constantemente las funciones que utilizas." +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "Los DJs pueden usar esta configuración para conectarse con software compatible y transmitir en directo durante este programa. Asigna un DJ a continuación" -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Haz clic en el cuadro de abajo para promocionar tu estación en %s." +#~ msgid "Dangerous Options" +#~ msgstr "Opciones Peligrosas" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(únicamente para fines de verificación, no será publicado)" +#~ msgid "Default Length:" +#~ msgstr "Duración por defecto:" -#~ msgid "Show me what I am sending " -#~ msgstr "Muéstrame lo que estoy enviando" +#~ msgid "Default License:" +#~ msgstr "Licencia por defecto:" -#~ msgid "Terms and Conditions" -#~ msgstr "Términos y condiciones" +#~ msgid "Default Sharing Type:" +#~ msgstr "Tipo de Compartir predeterminada" -#~ msgid "files meet the criteria" -#~ msgstr "los archivos cumplen los criterios" +#~ msgid "Disk Space" +#~ msgstr "Espacio en disco" -#~ msgid "file meets the criteria" -#~ msgstr "el archivo cumple los criterios" +#~ msgid "Download latest episodes:" +#~ msgstr "¿Descargar automáticamente los últimos episodios?" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Para poder promocionar tu estación, 'Send support feedback' (Enviar opinión de soporte) debe estar activado)." +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Arrastra las pistas aquí desde tu biblioteca para agregarlas a la lista de reproducción" -#~ msgid "Viewing " -#~ msgstr "Viendo " +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Arrastra archivos aquí o haz clic para seleccionarlos de tu equipo." -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Uso mensual del ancho de banda del oyente" +#~ msgid "Dynamic Smart Block" +#~ msgstr "Bloque inteligente dinámico" -#~ msgid "Your trial expires in" -#~ msgstr "Tu periodo de prueba expira en" +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Criterios del bloque inteligente dinámico: " -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento" +#~ msgid "Edit Metadata..." +#~ msgstr "Editar Metadatos..." + +#~ msgid "Editing " +#~ msgstr "Editando " + +#~ msgid "Email Sent!" +#~ msgstr "¡Email enviado!" + +#~ msgid "Empty playlist content" +#~ msgstr "Lista de reproducción vacía" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expandir bloque dinámico" + +#~ msgid "Expand Static Block" +#~ msgstr "Expandir bloque estático" + +#~ msgid "Explicit" +#~ msgstr "Explícito" + +#~ msgid "FAQ" +#~ msgstr "PMF" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Radio Reproductor de Facebook" + +#~ msgid "Failed" +#~ msgstr "Fallo" + +#~ msgid "File Path:" +#~ msgstr "Ruta del archivo:" + +#~ msgid "File Summary" +#~ msgstr "Resumen de Archivos" + +#~ msgid "File Summary Templates" +#~ msgstr "Plantillas de Resumen de Archivos" + +#~ msgid "File import in progress..." +#~ msgstr "Importación del archivo en progreso..." + +#~ msgid "Filter History" +#~ msgstr "Filtrar historial" + +#~ msgid "Find" +#~ msgstr "Buscar" + +#~ msgid "Find Shows" +#~ msgstr "Buscar Shows" + +#~ msgid "First Name" +#~ msgstr "Nombre" #~ msgid "" #~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" @@ -5661,23 +4479,534 @@ msgstr "¡No se pudo conectar con el servidor RabbitMQ! Comprueba si el servidor #~ "Para informacin detallada sobre qué signifcan estos campos de metadatos, porfavor consulta la %sRSS specification%s\n" #~ " o la documentación %sApple's podcasting%s." -#~ msgid "Record & Rebroadcast" -#~ msgstr "Grabar y retransmitir" +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Para una ayuda más detallada, lee el manual%s del %susuario." -#~ msgid "Upload Audio Files" -#~ msgstr "Subir archivos de audio" +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Para más detalles, por favor lee el %sManual de Airtime%s" -#~ msgid "Click 'Add' to create one." -#~ msgstr "Clic 'Añadir' para crear uno." +#~ msgid "Forgot your password?" +#~ msgstr "¿Olvidaste tu contraseña?" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Esta versión pronto quedará obsoleta." +#~ msgid "General Fields" +#~ msgstr "Campos Generales" -#~ msgid "This version is no longer supported." -#~ msgstr "Esta versión ya no cuenta con soporte." +#~ msgid "Generate Smartblock and Playlist" +#~ msgstr "Generar Bloque y Lista" + +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "¿Tienes una biblioteca de música enorme? ¡No hay problema! Con la nueva página de Subida, puedes arrastrar carpetas enteras a nuestra nube privada." + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Ayuda a mejorar %s informándonos de cómo lo estás utilizando. Esta información se recopilará con regularidad para mejorar tu experiencia de usuario.
Haz clic en la casilla de abajo y nos aseguraremos de mejorar constantemente las funciones que utilizas." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "A continuación, te indicamos cómo empezar a utilizar %s para automatizar tus emisiones: " + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Si Airtime está detrás de un router o firewall, posiblemente tengas que configurar una redirección en el puerto (port forwarding) y esta información de campo será incorrecta. En este caso necesitarás actualizar manualmente el campo pra que muestre el host/port/mount correcto al que tus DJs necesitan conectarse. El rango permitido es entre 1024 y 49151. " + +#~ msgid "Isrc Number:" +#~ msgstr "Número ISRC" + +#~ msgid "Keywords" +#~ msgstr "Palabras clave" + +#~ msgid "Last Name" +#~ msgstr "Apellido" + +#~ msgid "Length:" +#~ msgstr "Duración:" + +#~ msgid "Limit to " +#~ msgstr "Límite hasta " + +#~ msgid "Listen" +#~ msgstr "Escuchar" + +#~ msgid "Listeners" +#~ msgstr "Oyentes" + +#~ msgid "Live Broadcasting" +#~ msgstr "Transmisión en vivo" + +#~ msgid "Live Stream Input" +#~ msgstr "Entrada de stream en vivo" + +#~ msgid "Live stream" +#~ msgstr "Stream en directo" + +#~ msgid "Log Sheet" +#~ msgstr "Hoja de Registro" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Plantillas de Hoja de Registro" + +#~ msgid "Logout" +#~ msgstr "Salir" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "¡Parece que la página que buscas no existe!" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Parece que no hay shows programados en este día." + +#~ msgid "Manage Users" +#~ msgstr "Administrar usuarios" + +#~ msgid "Master Source" +#~ msgstr "Fuente maestra" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Uso mensual del ancho de banda del oyente" + +#~ msgid "New Criteria" +#~ msgstr "Nuevo criterio" + +#~ msgid "New File Summary Template" +#~ msgstr "Nueva Plantilla de Resumen de Archivos" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nueva Plantilla de Hoja de Registro" + +#~ msgid "New Modifier" +#~ msgstr "Nuevo Modificador" + +#~ msgid "New User" +#~ msgstr "Nuevo usuario" + +#~ msgid "New password" +#~ msgstr "Nueva contraseña" + +#~ msgid "Next:" +#~ msgstr "Siguiente:" + +#~ msgid "No File Summary Templates" +#~ msgstr "No hay Plantillas de Resumen de Archivo" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "No hay Plantillas de Hoja de Registro" + +#~ msgid "No open playlist" +#~ msgstr "No hay listas de reproducción abiertas" + +#~ msgid "No smart block currently open" +#~ msgstr "Ningún bloque inteligente abierto actualmente" + +#~ msgid "No webstream" +#~ msgstr "No hay webstream" + +#~ msgid "Now you're good to go!" +#~ msgstr "¡Ya estás listo!" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "Original Length:" +#~ msgstr "Duración original:" + +#~ msgid "" +#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" +#~ " is easier than ever." +#~ msgstr "" +#~ "Nuestra nueva vista Dashboard tiene ahora una poderosa interfaz de edición por pestañas, por lo que la actualización de tus pistas y listas de reproducción\n" +#~ " es más sencillo que nunca." + +#~ msgid "Output Streams" +#~ msgstr "Streams de salida" + +#~ msgid "Override" +#~ msgstr "Sobrescribir" + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento" + +#~ msgid "Page not found!" +#~ msgstr "¡Página no encontrada!" + +#~ msgid "Password Reset" +#~ msgstr "Restablecer Contraseña" + +#~ msgid "Pending" +#~ msgstr "Pendiente" + +#~ msgid "Phone:" +#~ msgstr "Teléfono:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Contenido de la lista de reproducción: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Transición (crossfade) de la lista de reproducción" + +#~ msgid "Playout History Templates" +#~ msgstr "Plantillas de Historial de Reproducción" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Por favor entra y confirma tu nueva contraseña en los campos que aparecen a continuación." #~ msgid "Please upgrade to " #~ msgstr "Por favor actualiza a" +#~ msgid "Podcast Name: " +#~ msgstr "Nombre del Podcast: " + +#~ msgid "Podcast URL: " +#~ msgstr "URL del Podcast: " + +#~ msgid "Previous:" +#~ msgstr "Anterior:" + +#~ msgid "Privacy Settings" +#~ msgstr "Ajustes de privacidad" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Los encargados de programa pueden hacer lo siguiente:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promocionar mi estacin en %s" + +#~ msgid "Publish to:" +#~ msgstr "Publicar a:" + +#~ msgid "Published on:" +#~ msgstr "Publicado en:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "Las pistas publicadas se pueden quitar o actualizar a continuación." + +#~ msgid "Publishing" +#~ msgstr "Publicación" + +#~ msgid "RESET" +#~ msgstr "RESETEAR" + +#~ msgid "RSS Feed URL:" +#~ msgstr "URL del Feed RSS:" + +#~ msgid "Recent Uploads" +#~ msgstr "Subidas Recientes" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Grabar y retransmitir" + +#~ msgid "Register Airtime" +#~ msgstr "Registrar Airtime" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Eliminar todo el contenido de este bloque inteligente" + +#~ msgid "Remove watched directory" +#~ msgstr "Quitar el directorio monitorizado" + +#~ msgid "Repeat Days:" +#~ msgstr "Días de repetición:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Vuelva a analizar el directorio monitorizado (Esto es útil si es un montaje en red y pueda estar fuera de sincronización con %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Tasa de muestreo:" + +#~ msgid "Save playlist" +#~ msgstr "Guardar lista de reproducción" + +#~ msgid "Save podcast" +#~ msgstr "Guardar podcast" + +#~ msgid "Save station podcast" +#~ msgstr "Guardar podcast de la estación" + +#~ msgid "Schedule a show" +#~ msgstr "Programar un show" + +#~ msgid "Scheduled Shows" +#~ msgstr "Shows programados" + +#~ msgid "Scheduling:" +#~ msgstr "Programación:" + +#~ msgid "Search Criteria:" +#~ msgstr "Buscar criterio:" + +#~ msgid "Select stream:" +#~ msgstr "Selecciona stream:" + +#~ msgid "Service" +#~ msgstr "Servicio" + +#~ msgid "Set" +#~ msgstr "Establecer" + +#~ msgid "Set Cue In" +#~ msgstr "Establecer Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Establecer Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Establecer plantilla predeterminada" + +#~ msgid "Share" +#~ msgstr "Compartir" + +#~ msgid "Show Source" +#~ msgstr "Fuente del Show" + +#~ msgid "Show Summary" +#~ msgstr "Resumen de Shows" + +#~ msgid "Show Waveform" +#~ msgstr "Mostrar Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Muéstrame lo que estoy enviando" + +#~ msgid "Shuffle playlist" +#~ msgstr "Lista de reproducción aleatoria" + +#~ msgid "Source Streams" +#~ msgstr "Streams fuente" + +#~ msgid "Static Smart Block" +#~ msgstr "Bloque inteligente estático" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Contenido del bloque inteligente estático: " + +#~ msgid "Station Description:" +#~ msgstr "Descripción de la estación:" + +#~ msgid "Station Web Site:" +#~ msgstr "Sitio web de la estación:" + +#~ msgid "Storage" +#~ msgstr "Almacenamiento" + +#~ msgid "Stream " +#~ msgstr "Stream " + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Estado de la recogida de datos del Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Configuración de stream" + +#~ msgid "Stream URL:" +#~ msgstr "URL del stream:" + +#~ msgid "Stream URL: " +#~ msgstr "URL del stream: " + +#~ msgid "Style" +#~ msgstr "Estilo" + +#~ msgid "Subscribe" +#~ msgstr "Suscribirse" + +#~ msgid "Subtitle" +#~ msgstr "Subtítulo" + +#~ msgid "Summary" +#~ msgstr "Sumario" + +#~ msgid "Support Feedback" +#~ msgstr "Opinión de soporte" + +#~ msgid "Support setting updated." +#~ msgstr "Se actualizaron las configuraciones de soporte." + +#~ msgid "Table Test" +#~ msgstr "Prueba de Tabla" + +#~ msgid "Terms and Conditions" +#~ msgstr "Términos y condiciones" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "La duración deseada para el bloque no se alcanzará si Libretime no puede encontrar suficientes pistas únicas que se ajusten a tus criterios. Activa esta opción si deseas que se agreguen pistas varias veces al bloque inteligente." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "La siguiente información se desplegará a los oyentes en sus reproductores:" + +#~ msgid "" +#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" +#~ " experience, no matter how you're connected." +#~ msgstr "" +#~ "El nuevo Airtime es más suave, elegante y rápido, ¡incluso en más dispositivos! Estamos comprometidos a mejorar la experiencia\n" +#~ " con Airtime, sin importar cómo te conectes." + +#~ msgid "The requested action is not supported!" +#~ msgstr "¡No se admite la acción solicitada!" + +#~ msgid "The work is in the public domain" +#~ msgstr "El trabajo es de dominio público" + +#~ msgid "This version is no longer supported." +#~ msgstr "Esta versión ya no cuenta con soporte." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Esta versión pronto quedará obsoleta." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Para reproducir estas pistas necesitarás actualizar tu navegador a una versión más reciente o atualizar tus plugin%s de %sFlash" + +#~ msgid "Toggle Details" +#~ msgstr "Mostrar/Ocultar detalles" + +#~ msgid "Track:" +#~ msgstr "Pista:" + +#~ msgid "TuneIn Settings" +#~ msgstr "Configuración de TuneIn" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Escribe los caracteres que ves en la imagen que aparece a continuación." + +#~ msgid "Update Required" +#~ msgstr "Actualización Requerida" + +#~ msgid "Update show" +#~ msgstr "Actualizar programa" + +#~ msgid "Update track" +#~ msgstr "Actualizar pista" + +#~ msgid "Upload" +#~ msgstr "Subir" + +#~ msgid "Upload Audio Files" +#~ msgstr "Subir archivos de audio" + +#~ msgid "Upload audio tracks" +#~ msgstr "Subir pistas de audio" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Utiliza estos ajustes en tu software de difusión para transmitir en directo en cualquier momento." + +#~ msgid "User Type" +#~ msgstr "Tipo de usuario" + +#~ msgid "View Feed" +#~ msgstr "Ver Feed" + +#~ msgid "View track" +#~ msgstr "Ver pista" + +#~ msgid "Viewing " +#~ msgstr "Viendo " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "No pudimos encontrar la página que buscas." + +#~ msgid "" +#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" +#~ " just a click away, you'll be on air and hands-free in no time." +#~ msgstr "" +#~ "Hemos simplificado la interfaz de Airtime para facilitar la navegación. Con las herramientas más importantes\n" +#~ " a un clic de distancia, estarás en el aire y manos libres en un momento." + +#~ msgid "Web Stream" +#~ msgstr "Stream web" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "¡Bienvenido a %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "¡Bienvenido a la demo de %s! Puedes iniciar sesión con el nombre de usuario 'admin' y la contraseña 'admin'." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Bienvenido al nuevo Airtime Pro!" + +#~ msgid "What" +#~ msgstr "Qué" + +#~ msgid "When" +#~ msgstr "Cuándo" + +#~ msgid "Who" +#~ msgstr "Quién" + +#~ msgid "You are not watching any media folders." +#~ msgstr "No estás monitorizando ninguna carpeta de medios." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Puedes cambiar estas opciones más adelante en tus preferencias y ajustes de usuario." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "¡No tienes permiso para acceder a esta página!" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "No tienes permiso para editar esta pista." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "¡Ya has publicado esta pista en todas las fuentes disponibles!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Debes aceptar las políticas de privacidad." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "¡No has publicado esta pista en ninguna fuente!" + +#~ msgid "" +#~ "Your favorite features are now even easier to use - and we've even\n" +#~ " added a few new ones! Check out the video above or read on to find out more." +#~ msgstr "" +#~ "Tus funciones favoritas son ahora aún más fáciles de usar - ¡e incluso hemos\n" +#~ " añadido algunas nuevas! Echa un vistazo al video de arriba o sigue leyendo para obtener más información." + +#~ msgid "Your trial expires in" +#~ msgstr "Tu periodo de prueba expira en" + +#~ msgid "and" +#~ msgstr "y" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "el archivo cumple los criterios" + +#~ msgid "files meet the criteria" +#~ msgstr "los archivos cumplen los criterios" + +#~ msgid "iTunes Fields" +#~ msgstr "Campos de iTunes" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volumen máximo" + +#~ msgid "mute" +#~ msgstr "silenciar" + +#~ msgid "next" +#~ msgstr "siguiente" + +#~ msgid "or" +#~ msgstr "o" + +#~ msgid "pause" +#~ msgstr "pausa" + +#~ msgid "play" +#~ msgstr "reproducir" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "por favor introduce un tiempo en segundos '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "anterior" + +#~ msgid "stop" +#~ msgstr "parar" + +#~ msgid "unmute" +#~ msgstr "desenmudecer" diff --git a/legacy/locale/fr_FR/LC_MESSAGES/libretime.po b/legacy/locale/fr_FR/LC_MESSAGES/libretime.po index 29c7a0020..fb687151b 100644 --- a/legacy/locale/fr_FR/LC_MESSAGES/libretime.po +++ b/legacy/locale/fr_FR/LC_MESSAGES/libretime.po @@ -1,4615 +1,608 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: -# AlbertFR , 2014 +# Albert , 2014 # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2019-10-17 14:19+0200\n" -"Last-Translator: A\n" -"Language-Team: French (France) (http://www.transifex.com/sourcefabric/airtime/language/fr_FR/)\n" +"Last-Translator: Albert \n" +"Language-Team: French (France)\n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 2.2.1\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "Email envoyé!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "Un lien de réinitialisation du mot de passe a été envoyé à votre adresse e-mail. Veuillez vérifier votre email et suivez les instructions à l'intérieur pour réinitialiser votre mot de passe. Si vous ne voyez pas l'e-mail, veuillez vérifier votre dossier spam!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "Retour" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Connexion" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "Bienvenue à la démo %s ! Vous pouvez vous connecter en utilisant le nom d'utilisateur «admin» et le mot de passe «admin» ." - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "Réinitialisation du mot de passe" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nouveau mot de passe" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "S'il vous plaît saisir et confirmer votre nouveau mot de passe dans les champs ci-dessous." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Historique de diffusion" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Fichier de Log" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Résumé du fichier" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Historique Emision" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Gérer les Répertoires des Médias" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "Général" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Réglages des Flux" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Sauvegarder" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "Global" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "Flux de sortie" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "Tableau de bord" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "Émissions programmées" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "Mon profil" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Flux " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Requis)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Options supplémentaires" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Les informations suivantes seront affichées aux auditeurs dans leur lecteur multimédia:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Site Internet de la Station de Radio)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL du Flux: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Le contenu des playlists automatiques est ajouté aux émissions une heure avant leur départ. Plus d'informations" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "Réglages TuneIn" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "Options dangereuses" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "Critères de recherche:" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "ou" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "et" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "Nouveau modificateur" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " à " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "Nouveau critère" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "Options avancées" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Choisissez une instance" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Pas d'émission" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Trouver" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Choisir le répertoire" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Installer" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Répertoire d'importation:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Ajouter" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "Rescanner le répertoire surveillé (Ce qui peut être utile si il est sur le réseau et est peut être désynchronisé de %s)" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Supprimer le répertoire surveillé" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Vous ne surveillez pas les dossiers médias." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Choisissez des jours:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Enlever" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Jours de répétition:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Trouver émissions" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "Personnalisez le lecteur en configurant les options ci-dessous. Lorsque vous avez terminé, \\ n copiez le code intégrable ci-dessous et collez-le dans le code HTML de votre site Web." - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtre de l'historique" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Source de l'émission" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "Les DJs peuvent utiliser ces réglages pour se connecter à cette émission et la diffuser en direct. Assignez un DJ ci-dessous." - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "Mot de passe oublié ?" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "Diffusion en direct" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Source Maitre" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "Utilisez ces paramètres dans votre logiciel de diffusion pour diffuser en direct à tout moment." - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "Ecraser" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "Réinitialiser" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "Les DJs peuvent utiliser ces paramètres dans leur logiciel de diffusion pour diffuser en direct les émissions qui leurs sont assignées." - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "Bienvenue à %s !" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "Vous pouvez les changer plus tard dans vos préférences et réglages utilisateurs." - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "S'abonner" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Gérer les Utilisateurs" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Nouvel Utilisateur" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Utilisateur" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Prénom" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Nom" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Type d'Utilisateur" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "Les auditeurs" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "Statut de collecte de données de flux" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "
Voici une pré-visualisation du contenu qui peut être généré par le bloc intelligent basé sur le critère ci-dessus." - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Ettendre le bloc Statique" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Ettendre le Bloc Dynamique" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "Choisissez certains critères de recherche ci-dessus et cliquez sur Générer pour créer cette liste de lecture." - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "Une liste de pistes est générée lorsque vous programmez ce bloc intelligent dans une émission." - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "Faites glisser les pistes ici de votre bibliothèque pour les ajouter à la liste de lecture" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "Edition " - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nom:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Description:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Durée:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "Basculer les détails" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Liste de Lecture Aléatoire" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Aléatoire" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Fondu enchaîné de la Liste de Lecture" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Vider le contenu de la Liste de Lecture" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Vider" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "Fondu dans: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fondu en sortie: " - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Annuler" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Sauvegarde de la Liste de Lecture" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Pas de Liste de Lecture Ouverte" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Montrer la Forme d'Onde" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fondu en entrée: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "Supprimer tout le contenu de ce bloc intelligent" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "Aucun bloc intelligent actuellement ouvert" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Point d'entrée " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Point de Sortie: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Durée Originale:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "Téléversement" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "Faites glisser les fichiers ici ou cliquez pour parcourir votre ordinateur." - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "en cours d'utilisation" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Tous" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "Échoués" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "En attente" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "Ajouts récents" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Options Avancées de Recherche" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Description" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL du Flux:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Durée par Défaut:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Aucun Flux Web" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Fermer" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "Nom du podcast: " - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "URL du podcast: " - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "Télécharger les derniers épisodes:" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "Programmation:" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "Générer Bloc intelligent et Playlist" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "Sauvegarder le podcast" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "URL du feed RSS:" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "Section Podcast" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "Sauvegarder le podcast de la station" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "Voir le feed" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "Champs généraux" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Nom" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Créateur" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Langue" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Droit d'Auteur" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "Lien" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "Champs pour iTunes" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "Auteur" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "Mots-clés" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "Sommaire" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "Sous-titre" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "Catégorie" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "Explicite" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "Paramètres de sécurité" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "Pour plus d' informations sur ce que ces champs de métadonnées signifient, s'il vous plaît voir le %s RSS spécification %s \\ n ou %s la documentation de podcasting Apple %s ." - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Import du Fichier en cours..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "Vous n'avez pas la permission de modifier cette piste." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "Publication" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "Modifier les méta-données..." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Titre:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Créateur:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "Publier vers:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "Vous avez déjà publié cette piste sur toutes les sources disponibles!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "Les pistes publiées peuvent être supprimées ou mises à jour ci-dessous." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "Publié le:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "Annuler la publication" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "Vous n'avez pas publié cette piste à aucune source!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "Cochez les cases ci-dessus et cliquez sur 'Publier' pour publier cette piste sur les sources marquées." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "Publier" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Piste:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Durée:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Fréquence d'échantillonnage:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Débit:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Atmosphère:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Année:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Label:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Compositeur:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conducteur:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Numéro ISRC:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Site Internet:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Langue:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Chemin du fichier:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Flux Web" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Bloc intelligent Dynamique" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Bloc intelligent Statique" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Piste Audio" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Contenus de la Liste de Lecture: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Contenus du bloc intelligent Statique: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Critère(s) du bloc intelligent Dynamique: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Limité à " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "Version %s" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "Un service" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Statut" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Espace Disque" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "Il n'y a pas d'émissions prévues aujourd'hui." - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "Propulsé par %s" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "Suivant" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "précédent" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "jouer" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "suivant" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "sourdine" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "désactiver" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "volume max" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Mise à Jour Requise" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Pour lire le média, vous devrez mettre à jour votre navigateur vers une version récente ou mettre à jour votre %sPlugin Flash%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Création du fichier Modèle d'Historique" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Création du modèle de fichier de Log" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Ajouter plus d'éléments" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Ajouter un nouveau champ" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Définir le modèle par défaut" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "Modèles d'historique de diffusion" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Modèles de fichiers de Log" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Nouveau modèle de fichier de Log" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Aucun modèles de fichiers de Log" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Définir par défaut" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Modèle de fichier d'historique" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Nouveau modèle de fichier d'Historique" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Aucun modèle de fichier d'historique" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "A propos" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, le logiciel ouvert de gestion et de programmation pour vos stations distantes." - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s est distribué sous %3$s" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "Voici comment vous pouvez commencer à utiliser %s pour automatiser vos émissions: " - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "Téléverser des pistes sonores" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "Cliquez sur le bouton 'Téléversement' dans le coin gauche pour ajouter des pistes à votre librairie." - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "Programmer une émission" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "Cliquez sur 'Calendrier' dans la barre de navigation à gauche. Puis cliquez sur le bouton '+ Nouvelle émission' et remplissez les informations requises." - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "Ajouter des pistes à l'émission" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "Cliquez sur une émission dans le calendrier et sélectionnez 'Programmer l'émission'. Dans la fenêtre qui s'affiche déplacez des pistes sur votre émission." - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "Vous en savez assez à présent !" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Pour une aide plus détaillée, lisez le %smanuel utilisateur%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Flux Live" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Partager" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Selection du Flux:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "Test de table" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Ajouter cette émission" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Mettre à jour l'émission" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Quoi" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Quand" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "Playlist automatique" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Entrée du Flux Direct" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Qui" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Style" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Début" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Titre" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Durée" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Précédent:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Prochain:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Sources des Flux" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "DIRECT" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Ecouter" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Déconnexion" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "Pistes" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlists" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Blocs Intelligents" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Flux web" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "Grille hebdomadaire" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "Prévisualisation:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Code à intégrer:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "Lecteur Radio Facebook" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "Lecteur" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "Une erreur est survenue." - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "Accès refusé !" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "Vous n'avez pas la permission d'accéder à cette page !" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "Aide" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "Mince !" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "Quelque chose s'est mal passé !" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Page non trouvée !" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "Nous n'avons pu trouver la page que vous cherchiez." - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "Cette requête est incorrecte !" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "L'action demandée n'est pas implémentée !" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "On dirait que la page que vous cherchez n'existe pas !" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Lecteur Audio" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Playlist" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "Bloc intelligent" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "Flux web" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "Podcasts" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Lecture" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stop" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Point d'entrée" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Placer le Point d'Entré" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Point de sortie" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Placer le Point de Sortie" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Curseur" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fondu en entrée" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fondu en sortie" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "%1$s copyright © %2$s Tous droits réservés.
Maintenu et distribué sous les %3$s par %4$s" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Vous n'avez pas la permission de déconnecter la source." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Il n'y a pas de source connectée à cette entrée." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Vous n'avez pas la permission de changer de source." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Veuillez entrer vos identifiants." - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "Cet identifiant ou adresse mail n'a pu être trouvé." - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "Il y a un problème avec l'identifiant ou adresse mail que vous avez entré." - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Mauvais nom d'utilisateur ou mot de passe fourni. S'il vous plaît essayez de nouveau." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Flux Web sans Titre" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Flux Web sauvegardé." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Valeurs du formulaire non valides." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Page introuvable." - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "L'action requise n'est pas implémentée." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "Vous n'avez pas la permission d'accéder à cette ressource." - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "Une erreur interne est survenue." - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Utilisateur ajouté avec succès!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Utilisateur mis à jour avec succès!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Paramètres mis à jour avec succès!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Pré-Visualisation" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Sélectionner le Curseur" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Enlever le Curseur" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Effacer" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "l'émission n'existe pas" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Préférences mises à jour." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Réglages du Flux mis à jour." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "le chemin doit être spécifié" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problème avec Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "Cette méthode de requête ne peut aboutir" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "Aucune piste n'a encore été publiée." - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s non trouvé" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Quelque chose s'est mal passé." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Ajouter une" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Ajouter un bloc intelligent" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "Editer..." - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Téléchargement" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Dupliquer la playlist" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Aucune action disponible" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Vous n'avez pas la permission de supprimer les éléments sélectionnés." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Impossible de supprimer ce fichier car il est dans la programmation." - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "Impossible de supprimer ce(s) fichier(s)." - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Copie de %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "S'il vous plaît assurez-vous que l'utilisateur admin a un mot de passe correct sur le système-> page flux." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "Vous n'êtes pas autorisé à accéder à cette ressource." - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "Vous n'êtes pas autorisé à accéder à cette ressource. " - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "Le fichier n'existe pas dans %s" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Mauvaise requête. pas de \"mode\" paramètre passé." - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Mauvaise requête. Le paramètre 'mode' est invalide" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Vous visualisez l'ancienne version de %s" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques." - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)." - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent." - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture." - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Liste de lecture Sans Titre" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Bloc intelligent Sans Titre" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Liste de lecture inconnue" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "Enregistrement:" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "Flux Maitre" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "Flux en Direct" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "Rien de Prévu" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "Émission en Cours:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "En ce moment" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "Vous exécutez la dernière version" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "Nouvelle version disponible: " - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "Vous avez une version préliminaire de LibreTime intégrée." - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "Une mise à jour du correctif pour votre installation LibreTime est disponible." - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible." - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "Une mise à jour majeure de votre installation LibreTime est disponible." - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible." - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "Ajouter à la liste de lecture" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "Ajouter au bloc intelligent" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "Ajouter 1 élément" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "Ajout de %s Elements" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents." - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "S'il vous plaît sélectionner un curseur sur la timeline." - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "Vous n'avez pas ajouté de pistes" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "Vous n'avez pas ajouté de playlists" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "Vous n'avez ajouté aucun bloc intelligent" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "Vous n'avez ajouté aucun flux web" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "A propos des pistes" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "A propos des playlists" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "A propos des podcasts" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "A propos des blocs intelligents" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "A propos des flux webs" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "Cliquez sur 'Nouveau' pour en créer un." - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "Nouveau" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "Edition" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "Ajouter à la grille" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "Ajouter à la prochaine émission" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "Ajouter à l'émission actuelle" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "Édition des Méta-Données" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "Ajouter à l'émission sélectionnée" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "Sélection" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "Sélectionner cette page" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "Dé-selectionner cette page" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "Tous déselectioner" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Étés-vous sûr de vouloir effacer le(s) élément(s) sélectionné(s)?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "Programmé" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "Taux d'echantillonage" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "Compositeur" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "Conducteur" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "Encodé Par" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "Dernier Modifié" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "Dernier Joué" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "Mime" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "Mood" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "Propriétaire" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "Taux d'Echantillonnage" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "Numéro de la Piste" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "Téléversé" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "Site Internet" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "Année" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "Chargement..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "Fichiers" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "Flux Web" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "Type non reconnu: " - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "Êtes-vous sûr de vouloir supprimer l'élément sélectionné?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "Téléversement en cours..." - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "Récupération des données du serveur..." - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "Importer" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "Importé?" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "Afficher" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "Code d'erreur: " - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "Message d'erreur: " - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "L'entrée doit être un nombre positif" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "L'entrée doit être un nombre" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "L'entrée doit être au format suivant: aaaa-mm-jj" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "L'entrée doit être au format suivant: hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr de vouloir quitter la page?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "Ouvrir le Constructeur de Média" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "s'il vous plaît mettez en durée '00: 00:00 (.0) '" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "Veuillez entrer un temps en secondes. Par exemple 0.5" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "Votre navigateur ne prend pas en charge la lecture de ce type de fichier: " - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "Le Bloc dynamique n'est pas prévisualisable" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "Limiter à: " - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "Liste de Lecture sauvegardé" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "Playlist mélangée" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «sruveillé»." - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Nombre d'auditeur sur %s: %s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Me le Rappeler dans une semain" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Ne jamais me le Rapeller" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Oui, aider Airtime" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "L'Image doit être du type jpg, jpeg, png, ou gif" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission." - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque." - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "Bloc intelligent mélangé" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "Bloc intelligent généré et critère(s) sauvegardé(s)" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "Bloc intelligent sauvegardé" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "Traitement en cours ..." - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "Sélectionnez modification" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "contient" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "ne contient pas" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "est" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "n'est pas" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "commence par" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "fini par" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "est plus grand que" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "est plus petit que" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "est dans le champ" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "Générer" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "Choisir un Répertoire de Stockage" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "Choisir un Répertoire à Surveiller" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Êtes-vous sûr que vous voulez changer le répertoire de stockage? \n" -"Cela supprimera les fichiers de votre médiathèque Airtime!" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Êtes-vous sûr de vouloir supprimer le répertoire surveillé?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "Ce chemin n'est pas accessible." - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus." - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "Connecté au serveur de flux" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "Le flux est désactivé" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "Obtention des informations à partir du serveur ..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "Impossible de se connecter au serveur de flux" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées: ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option." - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée." - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion." - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide." - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source»." - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "AVERTISSEMENT: cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs!" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute." - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Attention: Vous ne pouvez pas modifier ce champ alors que l'émission est en cours de lecture" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "Aucun résultat trouvé" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Cela suit le même modèle de sécurité que pour les émissions: seuls les utilisateurs affectés à l' émission peuvent se connecter." - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission." - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "L'instance émission n'existe plus!" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "Attention: Les émissions ne peuvent pas être re-liés" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur." - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "Émission" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "L'émission est vide" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1m" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5m" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10m" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15m" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30m" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60m" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "Récupération des données du serveur..." - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "Cette émission n'a pas de contenu programmée." - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "Cette émission n'est pas complètement remplie avec ce contenu." - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "Janvier" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "Fevrier" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "Mars" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "Avril" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "Mai" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "Juin" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "Juillet" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "Aout" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "Septembre" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "Octobre" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "Novembre" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "Décembre" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "Jan" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "Fev" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "Mar" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "Avr" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "Jun" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "Jui" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "Aou" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "Sep" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "Oct" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "Nov" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "Dec" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "Aujourd'hui" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "Jour" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "Semaine" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "Mois" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "Dimanche" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "Lundi" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "Mardi" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "Mercredi" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "Jeudi" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "Vendredi" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "Samedi" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "Dim" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "Lun" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "Mar" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "Mer" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "Jeu" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "Ven" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "Sam" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes." - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "Annuler l'émission en Cours?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "Arrêter l'enregistrement de l'émission en cours ?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "Ok" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "Contenu de l'émission" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "Enlever tous les contenus?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "Selectionner le(s) élément(s)?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "Fin" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "Durée" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "Filtrage " - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr " de " - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr " enregistrements" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "Il n'y a pas d'émissions prévues durant cette période." - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "Émission vide" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "Enregistrement à partir de 'Line In'" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "Pré-écoute de la piste" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "Vous ne pouvez pas programmer en dehors d'une émission." - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "Déplacer 1 élément" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "Déplacer %s éléments" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "Éditeur de fondu" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "Éditeur de points d'E/S" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "Tout Selectionner" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "Ne Rien Selectionner" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "Enlever les émissions surbookées" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "Supprimer les éléments programmés selectionnés" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "Aller à la piste en cours de lecture" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "Aller à l'émission en cours" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "Annuler l'émission en cours" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "Ajouter/Supprimer Contenu" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "Disque" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "Regarder à l'intérieur" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "Ouvrir" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "Administrateur" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DeaJee" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "Programmateur" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "Invité" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "Les Invités peuvent effectuer les opérations suivantes:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "Voir le calendrier" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "Voir le contenu des émissions" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "Les DJs peuvent effectuer les opérations suivantes:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "Gérer le contenu des émissions attribué" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "Importer des fichiers multimédias" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Créez des listes de lectures, des blocs intelligents et des flux web" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "Gérer le contenu de leur propre audiotheque" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "Afficher et gérer le contenu des émissions" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "Programmer des émissions" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "Gérez tout le contenu de l'audiotheque" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "Les Administrateurs peuvent effectuer les opérations suivantes:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "Gérer les préférences" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "Gérer les utilisateurs" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "Gérer les dossiers surveillés" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "Envoyez vos remarques au support" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "Voir l'état du système" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "Accédez à l'historique diffusion" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "Voir les statistiques des auditeurs" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "Montrer / cacher les colonnes" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "Colonnes" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "De {from} à {to}" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "kbps" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "aaaa-mm-jj" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "kHz" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "Di" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "Lu" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "Ma" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "Me" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "Je" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "Ve" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "Sa" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "Heure" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "Minute" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "Fait" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "Sélectionnez les fichiers" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer." - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "Ajouter des fichiers" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "Arrêter le Téléversement" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "Démarrer le Téléversement" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "Ajouter des fichiers" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Téléversement de %d/%d fichiers" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "N/A" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "Faites glisser les fichiers ici." - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "Erreur d'extension du fichier." - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "Erreur de la Taille de Fichier." - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "Erreur de comptage des fichiers." - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "Erreur d'initialisation." - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "Erreur HTTP." - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "Erreur de sécurité." - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "Erreur générique." - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "Erreur d'E/S." - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "Fichier: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d fichiers en file d'attente" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "Fichier:%f, taille: %s, taille de fichier maximale: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "L'URL de téléversement est peut être erronée ou inexistante" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "Erreur: Fichier trop grand: " - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "Erreur: extension de fichier non valide: " - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "Créer une entrée" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "Éditer l'enregistrement de l'historique" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Copié %s ligne(s)%s dans le presse papier" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sVue Imprimante%s Veuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur échapper lorsque vous avez terminé." - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "Nouvelle émission" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "Nouvelle entrée de log" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "Activé" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "Désactivé" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "À l'antenne" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "Hors antenne" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "Éteint" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "Aucun programme" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rediffusion de l'émission %s de %s à %s" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "L'enregistrement du fichier n'existe pas" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Afficher les métadonnées du fichier enregistré" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Ajouter des pistes" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Vider le contenu de l'émission" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "Annuler l'émission" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "Modifier cet élément" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Édition de l'émission" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "Supprimer cet élément" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "Supprimer cet élément et tous les suivants" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Permission refusée" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Impossible de déplacer une émission déjà diffusée" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Impossible de déplacer une émission dans le passé" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Ne peux pas programmer des émissions qui se chevauchent" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Doit attendre 1 heure pour retransmettre." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Piste" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Heure de Début" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Heure de Fin" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Joué" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "Ajouter une playlist automatique ?" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "Sélectionner la playlist" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Répéter la playlist jusqu'à ce que l'émission soit pleine ?" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Selectionner le critère" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Taux d'Echantillonage (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Taux d'Echantillonage (Khz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "heures" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minutes" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "éléments" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "Aléatoirement" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "Plus récent" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "Plus vieux" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "Type:" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamique" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statique" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "Autoriser la répétition de pistes:" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "Autoriser la dernière piste à dépasser l'horaire:" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "Trier les pistes:" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "Limiter à:" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Génération de la liste de lecture et sauvegarde des crières" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Contenu de la liste de lecture alèatoire" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "La Limite ne peut être vide ou plus petite que 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "La Limite ne peut être supérieure à 24 heures" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "La valeur doit être un entier" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 est la valeur maximale de l'élément que vous pouvez définir" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Vous devez sélectionner Critères et Modification" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "La 'Durée' doit être au format '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "La valeur doit être numérique" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "La valeur doit être inférieure à 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "La valeur doit être inférieure à %s caractères" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "La Valeur ne peut pas être vide" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Numéro ISRC:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "Publier..." - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Répertoire d'importation:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Répertoires Suveillés:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "N'est pas un Répertoire valide" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Lien:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Type de Répétition:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "hebdomadaire" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "toutes les 2 semaines" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "toutes les 3 semaines" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "toutes les 4 semaines" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "mensuel" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Selection des Jours:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Répétition par:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "jour du mois" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "jour de la semaine" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Date de Fin:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Sans Fin?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "La Date de Fin doit être postérieure à la Date de Début" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Veuillez sélectionner un jour de répétition" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Une valeur est requise, ne peut pas être vide" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "Heure de début:" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "À venir:" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "Temps de fin:" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Fuseau horaire:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Répétitions?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Impossible de créer un émission dans le passé" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "La date/heure de Fin ne peut être dans le passé" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Ne peut pas avoir une durée <0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Ne peut pas avoir une durée de 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Ne peut pas avoir une durée supérieure à 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Utilisateur:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Mot de Passe:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Vérification du Mot de Passe:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Prénom:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nom:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Courriel:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Numéro de Mobile:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Type d'utilisateur:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Le Nom de connexion n'est pas unique." - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "Utilisez l'authentification %s :" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Utiliser l'authentification personnalisée:" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Nom d'utilisateur personnalisé" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Mot de Passe personnalisé" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "Hôte:" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Port:" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Point de Montage:" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Le champ Nom d'Utilisateur ne peut pas être vide." - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Le champ Mot de Passe ne peut être vide." - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Langage de la station" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Fuseau horaire de la Station" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Feed Privacy" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "Publique" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "Privé" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Date de Début:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Caractère Invalide saisi" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Recherche d'utilisateurs:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Filtrer par émissions" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Toutes mes émissions:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Mes émissions" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Couleur de Fond:" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Couleur du Texte:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Logo actuel:" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Montrer le logo:" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "Prévisualisation du logo:" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Le Jour doit être spécifié" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "La durée doit être spécifiée" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Vous devez attendre au moins 1 heure pour retransmettre" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Émission sans Titre" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Description de l'élément:" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "Nom de la Station" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "Description de la station" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "Logo de la Station:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Remarque: Tout ce qui est plus grand que 600x600 sera redimensionné." - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "Durée du fondu enchaîné:" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "Veuillez entrer un temps en secondes (par exemple 0.5)" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "Fondu en Entrée par défaut (s):" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "Fondu en Sorti par défaut (s):" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "Remplacer les metatags de l'épisode" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents." - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement." - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "API publique LibreTime" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "Requis pour le widget de programmation." - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" -"L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n" -" à des widgets externes pouvant être intégrés à votre site Web." - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "URLs CORS autorisées" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "URL distantes autorisées à accéder à cette instance LibreTime dans un navigateur. Une URL par ligne." - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "Langage par défaut" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "La semaine commence le" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "Afficher le bouton de connexion sur votre page radio?" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Enregistrer à partir de 'Line In'?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rediffusion?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Email" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Réinitialisation du Mot de Passe" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "Arrêt automatique:" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "Mise en marche automatique:" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "Changement de transition en fondu (s):" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "Hôte source maître:" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "Port source maître:" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "Seuls les chiffres sont autorisés." - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "Point de montage - Source Maître:" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "Hôte - Source Émission:" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "Port - Source Émission:" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "Point de montage - Source Émission:" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "Mot de Passe" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Confirmez le nouveau mot de passe" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "La confirmation du mot de passe ne correspond pas à votre mot de passe." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Supprimer toutes les pistes de la librairie" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "jours" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Activé:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Mobile:" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Type de Flux:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Type de service:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Cannaux:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Serveur" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Point de Montage" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Utilisateur Admin" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Mot de Passe Admin" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Le Serveur ne peut être vide." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Le Port ne peut être vide." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Fuseau horaire de l'interface:" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "En Lecture" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "Sélectionnez un flux:" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "Détecter automatiquement le flux le plus approprié à utiliser." - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "Sélectionnez un flux:" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr " - Interface mobile" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr " - Le lecteur ne fonctionne pas avec des flux Opus." - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur." - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Pousser les métadonnées sur votre station sur TuneIn?" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Identifiant de la station:" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Clé partenaire:" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "ID partenaire:" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez." - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne correspond pas au format de la date '%format%'" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' est inférieur à %min% charactères" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' est plus grand de %min% charactères" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Les mots de passe ne correspondent pas" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "Sortie audio matérielle:" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "Type de Sortie" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "ALSA" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "AO" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "OSS" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "Portaudio" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "Pulseaudio" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "Jack" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Metadata Vorbis" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "Label du Flux:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "Artiste - Titre" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "Émission - Artiste - Titre" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "Nom de la Station - Nom de l'émission" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "Métadonnées Hors Antenne" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "Activer" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "Modifier le Niveau du Gain" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "Serveur de Streaming:" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "Streaming par défaut" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "Streaming personnalisé / tiers" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" msgstr "L'année %s doit être comprise entre 1753 et 9999" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" msgstr "%s-%s-%s n'est pas une date valide" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" msgstr "%s:%s:%s n'est pas une durée valide" -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "Anglais" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "Au loin" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "Abkhaze" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "Amharique" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "Arabe" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "Assamais" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "Aymara" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "Azerbaïdjanais" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "Bachkir" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "Biélorusse" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "Bulgare" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "Bihari" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "Bislama" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "Bengali / bengali" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "Tibétain" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "Breton" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "Catalan" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "Corse" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "Tchèque" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "Gallois" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "Danois" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "Allemand" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "Bhutani" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "Grec" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "Espéranto" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "Espagnol" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "Estonien" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "Basque" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "Persan" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "Finlandais" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "Fidji" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "Féroïen" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "Français" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "Frison" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "Irlandais" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "Écossais / gaélique" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "Galicien" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "Gujarati" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "Hausa" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "Croate" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "Hongrois" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "Arménien" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "Indonésien" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "Islandais" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "Italien" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "Hébreu" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "Japonais" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "Yiddish" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "Javanais" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "Géorgien" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "Kazakh" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "Groenlandais" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "Cambodgien" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "Coréen" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "Cachemire" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "Kurde" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "Kirghiz" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "Latin" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "Laothien" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "Lituanien" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "Letton / letton" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "Malgache" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "Maori" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "Macédonien" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "Mongol" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "Moldave" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "Malais" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "Maltais" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "Birman" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "Nauru" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "Népalais" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "Néerlandais" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "Norvégien" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "Occitan" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "(Afan) / Oromoor / Oriya" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "Punjabi" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "Polonais" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "Pachtou / pachtou" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "Portugais" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "Quechua" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "Rhéto-roman" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "Kirundi" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "Roumain" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "Russe" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "Kinyarwanda" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "Sanskrit" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "Sindhi" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "Sangro" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "Serbo-croate" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "Cingalais" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "Slovaque" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "Slovène" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "Samoan" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "Shona" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "Somali" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "Albanais" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "Serbe" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "Siswati" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "Sesotho" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "Sundanese" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "Suédois" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "Swahili" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "Tamil" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "Tegulu" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "Tadjik" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "Thaïlandais" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "Tigrinya" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "Turkmène" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "Tagalog" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "Setswana" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "Tonga" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "Turc" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "Tsonga" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "Tatar" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "Twi" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "Ukrainien" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "Ourdou" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "Ouzbek" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "Vietnamien" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "Volapuk" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "Wolof" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "Chinois" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "Zoulou" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Utiliser les réglages par défaut" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "Téléverser des pistes ci-dessous pour les ajouter à votre librairie !" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "Vous n'avez pas encore ajouté de fichiers audios. %sTéléverser un fichier%s." -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "Cliquez sur le bouton 'Nouvelle émission' et remplissez les champs requis." -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "Vous n'avez pas encore programmé d'émissions. %sCréer une émission%s." -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "Pour commencer la diffusion, annulez l'émission liée actuelle en cliquant dessus puis en sélectionnant 'Annuler l'émission'." -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" @@ -4618,739 +611,3300 @@ msgstr "" "Les émissions liées doivent être remplies avec des pistes avant de commencer. Pour commencer à diffuser, annulez l'émission liée actuelle et programmer une émission dé-liée.\n" " %sCréer une émission dé-liée%s." -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "Pour commencer la diffusion, cliquez sur une émission et sélectionnez 'Ajouter des pistes'" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "L'émission actuelle est vide. %sAjouter des pistes audio%s." -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "Cliquez sur l'émission suivante et sélectionner 'Ajouter des pistes'" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "La prochaine émission est vide. %sAjouter des pistes à cette émission%s." -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "Anglais" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "Au loin" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "Abkhaze" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "Amharique" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "Arabe" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "Assamais" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "Aymara" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "Azerbaïdjanais" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "Bachkir" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "Biélorusse" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "Bulgare" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "Bihari" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "Bislama" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "Bengali / bengali" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "Tibétain" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "Breton" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "Catalan" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "Corse" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "Tchèque" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "Gallois" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "Danois" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "Allemand" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "Bhutani" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "Grec" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "Espéranto" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "Espagnol" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "Estonien" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "Basque" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "Persan" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "Finlandais" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "Fidji" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "Féroïen" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "Français" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "Frison" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "Irlandais" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "Écossais / gaélique" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "Galicien" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "Guarani" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "Gujarati" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "Hausa" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "Hindi" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "Croate" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "Hongrois" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "Arménien" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "Interlingua" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "Interlingue" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "Inupiak" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "Indonésien" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "Islandais" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "Italien" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "Hébreu" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "Japonais" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "Yiddish" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "Javanais" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "Géorgien" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "Kazakh" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "Groenlandais" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "Cambodgien" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "Kannada" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "Coréen" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "Cachemire" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "Kurde" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "Kirghiz" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "Latin" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "Lingala" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "Laothien" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "Lituanien" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "Letton / letton" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "Malgache" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "Maori" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "Macédonien" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "Malayalam" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "Mongol" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "Moldave" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "Marathi" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "Malais" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "Maltais" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "Birman" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "Nauru" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "Népalais" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "Néerlandais" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "Norvégien" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "Occitan" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "(Afan) / Oromoor / Oriya" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "Punjabi" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "Polonais" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "Pachtou / pachtou" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "Portugais" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "Quechua" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "Rhéto-roman" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "Kirundi" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "Roumain" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "Russe" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "Kinyarwanda" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "Sanskrit" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "Sindhi" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "Sangro" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "Serbo-croate" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "Cingalais" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "Slovaque" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "Slovène" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "Samoan" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "Shona" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "Somali" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "Albanais" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "Serbe" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "Siswati" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "Sesotho" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "Sundanese" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "Suédois" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "Swahili" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "Tamil" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "Tegulu" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "Tadjik" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "Thaïlandais" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "Tigrinya" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "Turkmène" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "Tagalog" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "Setswana" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "Tonga" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "Turc" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "Tsonga" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "Tatar" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "Twi" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "Ukrainien" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "Ourdou" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "Ouzbek" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "Vietnamien" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "Volapuk" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "Wolof" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "Xhosa" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "Yoruba" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "Chinois" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "Zoulou" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Utiliser les réglages par défaut" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Le points d'entrée et de sortie sont indéfinis." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Impossible de définir un point d'entrée plus grand que le point de sortie." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Ne peut pas fixer un point de sortie plus grand que la durée du fichier." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Ne peux pas fixer un point de sortie plus petit que le point d'entrée." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "La durée doit être supérieure à 0 minute" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "La durée doit être de la forme \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL doit être de la forme \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "L'URL doit être de 512 caractères ou moins" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Aucun type MIME trouvé pour le Flux Web." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Le Nom du Flux Web ne peut être vide" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Impossible d'analyser la Sélection XSPF" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Impossible d'analyser la Sélection PLS" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Impossible d'analyser la Séléction M3U" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Flux Web Invalide - Ceci semble être un fichier téléchargeable." - -#: legacy/application/models/Webstream.php:336 +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:259 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "Page de la radio" + +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendrier" + +#: application/configs/navigation.php:43 +msgid "Widgets" +msgstr "Widgets" + +#: application/configs/navigation.php:52 +msgid "Player" +msgstr "Lecteur" + +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" +msgstr "Grille hebdomadaire" + +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "Paramètres" + +#: application/configs/navigation.php:74 +msgid "General" +msgstr "Général" + +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "Mon profil" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Utilisateurs" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Flux" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Statut" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "Statistiques" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Historique de diffusion" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Modèle d'historique" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Statistiques des auditeurs" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "Aide" + +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Mise en route" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Manuel Utilisateur" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:183 +msgid "What's New?" +msgstr "Qu'est-ce qui a changé ?" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "Vous n'êtes pas autorisé à accéder à cette ressource." + +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "Vous n'êtes pas autorisé à accéder à cette ressource. " + +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" -msgstr "Type de flux non reconnu: %s" +msgid "File does not exist in %s" +msgstr "Le fichier n'existe pas dans %s" -#: legacy/application/models/ShowBuilder.php:209 +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Mauvaise requête. pas de \"mode\" paramètre passé." + +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Mauvaise requête. Le paramètre 'mode' est invalide" + +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Vous n'avez pas la permission de déconnecter la source." + +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Il n'y a pas de source connectée à cette entrée." + +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Vous n'avez pas la permission de changer de source." + +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Page introuvable." + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "L'action requise n'est pas implémentée." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "Vous n'avez pas la permission d'accéder à cette ressource." + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "Une erreur interne est survenue." + +#: application/controllers/IndexController.php:88 #, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rediffusion de %s à %s" +msgid "%s Podcast" +msgstr "%s Podcast" -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Selectionner le Pays" +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Aucune piste n'a encore été publiée." -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Vous ne pouvez pas déplacer les éléments sur les émissions liées" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Le calendrier que vous consultez n'est pas à jour! (décalage calendaire)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "La programmation que vous consultez n'est pas à jour! (décalage d'instance)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Le calendrier que vous consultez n'est pas à jour!" - -#: legacy/application/models/Scheduler.php:147 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Vous n'êtes pas autorisé à programme l'émission %s." +msgid "%s not found" +msgstr "%s non trouvé" -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Quelque chose s'est mal passé." -#: legacy/application/models/Scheduler.php:157 +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Pré-Visualisation" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Ajouter une" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Ajouter un bloc intelligent" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Effacer" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "Editer..." + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Téléchargement" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Dupliquer la playlist" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Aucune action disponible" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Vous n'avez pas la permission de supprimer les éléments sélectionnés." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Impossible de supprimer ce fichier car il est dans la programmation." + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "Impossible de supprimer ce(s) fichier(s)." + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 #, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "L émission %s est terminé et ne peut pas être programmé." +msgid "Copy of %s" +msgstr "Copie de %s" -#: legacy/application/models/Scheduler.php:164 +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "S'il vous plaît assurez-vous que l'utilisateur admin a un mot de passe correct sur le système-> page flux." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Lecteur Audio" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Quelque chose s'est mal passé !" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Enregistrement:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Flux Maitre" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Flux en Direct" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Rien de Prévu" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Émission en Cours:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "En ce moment" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "Vous exécutez la dernière version" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nouvelle version disponible: " + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "Vous avez une version préliminaire de LibreTime intégrée." + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "Une mise à jour du correctif pour votre installation LibreTime est disponible." + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "Une mise à jour des fonctionnalités pour votre installation LibreTime est disponible." + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "Une mise à jour majeure de votre installation LibreTime est disponible." + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "Plusieurs mises à jour majeures pour l'installation de LibreTime sont disponibles. S'il vous plaît mettre à jour dès que possible." + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Ajouter à la liste de lecture" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Ajouter au bloc intelligent" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "Ajouter 1 élément" + +#: application/controllers/LocaleController.php:48 #, php-format -msgid "The show %s has been previously updated!" -msgstr "L'émission %s a été précédemment mise à jour!" +msgid "Adding %s Items" +msgstr "Ajout de %s Elements" -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !" +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "Vous pouvez seulement ajouter des pistes aux Blocs Intelligents." -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants." +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Vous pouvez uniquement ajouter des pistes, des blocs intelligents et flux web aux listes de lecture." -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Un fichier sélectionne n'existe pas!" +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "S'il vous plaît sélectionner un curseur sur la timeline." -#: legacy/application/models/MusicDir.php:160 +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "Vous n'avez pas ajouté de pistes" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "Vous n'avez pas ajouté de playlists" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "Vous n'avez ajouté aucun bloc intelligent" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "Vous n'avez ajouté aucun flux web" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "A propos des pistes" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "A propos des playlists" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "A propos des podcasts" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "A propos des blocs intelligents" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "A propos des flux webs" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Cliquez sur 'Nouveau' pour en créer un." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Ajouter" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "Nouveau" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "Edition" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "Ajouter à la grille" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "Ajouter à la prochaine émission" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "Ajouter à l'émission actuelle" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Publier" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Enlever" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Édition des Méta-Données" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Ajouter à l'émission sélectionnée" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Sélection" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Sélectionner cette page" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Dé-selectionner cette page" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Tous déselectioner" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Étés-vous sûr de vouloir effacer le(s) élément(s) sélectionné(s)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Programmé" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Pistes" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Playlist" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Titre" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Créateur" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Taux d'echantillonage" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "Compositeur" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "Conducteur" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Droit d'Auteur" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "Encodé Par" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Langue" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "Dernier Modifié" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "Dernier Joué" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Durée" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "Propriétaire" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Taux d'Echantillonnage" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "Numéro de la Piste" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "Téléversé" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "Site Internet" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "Année" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Chargement..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Tous" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Fichiers" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlists" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Blocs Intelligents" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Flux Web" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Type non reconnu: " + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Êtes-vous sûr de vouloir supprimer l'élément sélectionné?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Téléversement en cours..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Récupération des données du serveur..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "Importer" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "Importé?" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "Afficher" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "Code d'erreur: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Message d'erreur: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "L'entrée doit être un nombre positif" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "L'entrée doit être un nombre" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "L'entrée doit être au format suivant: aaaa-mm-jj" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "L'entrée doit être au format suivant: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Section Podcast" + +#: application/controllers/LocaleController.php:135 #, php-format -msgid "%s is already watched." -msgstr "%s déjà examiné(s)." +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "Vous êtes en train de téléverser des fichiers. %s Aller vers un autre écran pour annuler le processus de téléversement. %s Êtes-vous sûr de vouloir quitter la page?" -#: legacy/application/models/MusicDir.php:164 +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Ouvrir le Constructeur de Média" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "s'il vous plaît mettez en durée '00: 00:00 (.0) '" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "Veuillez entrer un temps en secondes. Par exemple 0.5" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Votre navigateur ne prend pas en charge la lecture de ce type de fichier: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Le Bloc dynamique n'est pas prévisualisable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Limiter à: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Liste de Lecture sauvegardé" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Playlist mélangée" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime n'est pas sûr de l'état de ce fichier. Cela peut arriver lorsque le fichier se trouve sur un lecteur distant qui est inaccessible ou si le fichier est dans un répertoire qui n'est pas plus «sruveillé»." + +#: application/controllers/LocaleController.php:147 #, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contient un répertoire surveillé imbriqué: %s" +msgid "Listener Count on %s: %s" +msgstr "Nombre d'auditeur sur %s: %s" -#: legacy/application/models/MusicDir.php:168 +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Me le Rappeler dans une semain" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Ne jamais me le Rapeller" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Oui, aider Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "L'Image doit être du type jpg, jpeg, png, ou gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Un bloc statique intelligent permettra d'économiser les critères et générera le contenu du bloc immédiatement. Cela vous permet d'éditer et de le voir dans la médiathèque avant de l'ajouter à une émission." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Un bloc dynamique intelligent enregistre uniquement les critères. Le contenu du bloc que vous obtiendrez sera généré lors de l'ajout à l'émission. Vous ne serez pas en mesure d'afficher et de modifier le contenu de la médiathèque." + +#: application/controllers/LocaleController.php:156 #, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s est imbriqué avec un répertoire surveillé existant: %s" +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "Bloc intelligent mélangé" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "Bloc intelligent généré et critère(s) sauvegardé(s)" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Bloc intelligent sauvegardé" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Traitement en cours ..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "Sélectionnez modification" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "contient" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "ne contient pas" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "est" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "n'est pas" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "commence par" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "fini par" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "est plus grand que" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "est plus petit que" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "est dans le champ" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "Générer" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Choisir un Répertoire de Stockage" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Choisir un Répertoire à Surveiller" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Êtes-vous sûr que vous voulez changer le répertoire de stockage? \n" +"Cela supprimera les fichiers de votre médiathèque Airtime!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Gérer les Répertoires des Médias" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Êtes-vous sûr de vouloir supprimer le répertoire surveillé?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Ce chemin n'est pas accessible." + +#: application/controllers/LocaleController.php:181 #, php-format -msgid "%s is not a valid directory." -msgstr "%s n'est pas un répertoire valide." +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Certains types de flux nécessitent une configuration supplémentaire. Les détails sur l'activation de l' %sAAC+ Support%s ou %sOpus Support%s sont prévus." -#: legacy/application/models/MusicDir.php:232 +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Connecté au serveur de flux" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "Le flux est désactivé" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "Obtention des informations à partir du serveur ..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Impossible de se connecter au serveur de flux" + +#: application/controllers/LocaleController.php:186 #, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s est déjà défini comme le répertoire de stockage courant ou dans la liste des dossiers surveillés" +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" -#: legacy/application/models/MusicDir.php:388 +#: application/controllers/LocaleController.php:187 #, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s est déjà défini comme espace de stockage courant ou dans la liste des répertoires surveillés." +msgid "For more details, please read the %s%s Manual%s" +msgstr "" -#: legacy/application/models/MusicDir.php:431 +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Cochez cette option pour activer les métadonnées pour les flux OGG (ces métadonnées incluent le titre de la piste, l'artiste et le nom de émission, et sont affichées dans un lecteur audio). VLC et mplayer ont un sérieux bogue lors de la lecture d'un flux Ogg / Vorbis qui affiche les informations de métadonnées: ils se déconnecteront après chaque chanson. Si vous utilisez un flux OGG et si vos auditeurs n'utilisent pas ces lecteurs audio, alors n'hésitez pas à activer cette option." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Cochez cette case arrête automatiquement la source Maître/Émission lorsque la source est déconnectée." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Cochez cette case démarre automatiquement la source Maître/Émission lors de la connexion." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Si votre serveur Icecast s'attend à ce que le nom d'utilisateur soit «source», ce champ peut être laissé vide." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Si votre client de flux audio ne demande pas un nom d'utilisateur, ce champ doit être «source»." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "AVERTISSEMENT: cela redémarrera votre flux et peut entraîner un court décrochage pour vos auditeurs!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "C'est le nom d'utilisateur administrateur et mot de passe pour icecast / shoutcast qui permet obtenir les statistiques d'écoute." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Attention: Vous ne pouvez pas modifier ce champ alors que l'émission est en cours de lecture" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Aucun résultat trouvé" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Cela suit le même modèle de sécurité que pour les émissions: seuls les utilisateurs affectés à l' émission peuvent se connecter." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Spécifiez l'authentification personnalisée qui ne fonctionnera que pour cette émission." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "L'instance émission n'existe plus!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Attention: Les émissions ne peuvent pas être re-liés" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "En liant vos émissions répétées chaque élément multimédia programmé dans n'importe quelle émission répétée sera également programmé dans les autres émissions répétées" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "Le fuseau horaire est fixé au fuseau horaire de la station par défaut. Les émissions dans le calendrier seront affichés dans votre heure locale définie par le fuseau horaire de l'interface dans vos paramètres utilisateur." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Émission" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "L'émission est vide" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Récupération des données du serveur..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Cette émission n'a pas de contenu programmée." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Cette émission n'est pas complètement remplie avec ce contenu." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Janvier" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Fevrier" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "Mars" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "Avril" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "Mai" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "Juin" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "Juillet" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "Aout" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "Septembre" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "Octobre" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "Novembre" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "Décembre" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "Jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "Fev" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "Mar" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "Avr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "Jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "Jui" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "Aou" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "Sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "Oct" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "Nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "Dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "Aujourd'hui" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "Jour" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "Semaine" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "Mois" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "Dimanche" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "Lundi" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "Mardi" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "Mercredi" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "Jeudi" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "Vendredi" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "Samedi" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Dim" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Lun" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Mar" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Mer" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Jeu" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Ven" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Sam" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Les émissions qui dépassent leur programmation seront coupées par les émissions suivantes." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Annuler l'émission en Cours?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Arrêter l'enregistrement de l'émission en cours ?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Contenu de l'émission" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Enlever tous les contenus?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "Selectionner le(s) élément(s)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Début" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "Fin" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Durée" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filtrage " + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr " de " + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr " enregistrements" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "Il n'y a pas d'émissions prévues durant cette période." + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Point d'entrée" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Point de sortie" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fondu en entrée" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fondu en sortie" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Émission vide" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Enregistrement à partir de 'Line In'" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Pré-écoute de la piste" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Vous ne pouvez pas programmer en dehors d'une émission." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "Déplacer 1 élément" + +#: application/controllers/LocaleController.php:301 #, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s n'existe pas dans la liste surveillée." +msgid "Moving %s Items" +msgstr "Déplacer %s éléments" -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "Vide" +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Sauvegarder" -#: legacy/application/models/Auth.php:33 +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Annuler" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Éditeur de fondu" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Éditeur de points d'E/S" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Les caractéristiques de la forme d'onde sont disponibles dans un navigateur supportant l'API Web Audio" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Tout Selectionner" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Ne Rien Selectionner" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Enlever les émissions surbookées" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Supprimer les éléments programmés selectionnés" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Aller à la piste en cours de lecture" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "Aller à l'émission en cours" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Annuler l'émission en cours" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Ouvrir la Médiathèque pour ajouter ou supprimer du contenu" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Ajouter/Supprimer Contenu" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "en cours d'utilisation" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "Disque" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Regarder à l'intérieur" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "Ouvrir" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Administrateur" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DeaJee" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programmateur" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Invité" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Les Invités peuvent effectuer les opérations suivantes:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Voir le calendrier" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Voir le contenu des émissions" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "Les DJs peuvent effectuer les opérations suivantes:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Gérer le contenu des émissions attribué" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Importer des fichiers multimédias" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Créez des listes de lectures, des blocs intelligents et des flux web" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "Gérer le contenu de leur propre audiotheque" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Afficher et gérer le contenu des émissions" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Programmer des émissions" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Gérez tout le contenu de l'audiotheque" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Les Administrateurs peuvent effectuer les opérations suivantes:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Gérer les préférences" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Gérer les utilisateurs" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Gérer les dossiers surveillés" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Envoyez vos remarques au support" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Voir l'état du système" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Accédez à l'historique diffusion" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Voir les statistiques des auditeurs" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Montrer / cacher les colonnes" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "Colonnes" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "De {from} à {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "aaaa-mm-jj" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Di" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Lu" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Ma" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Me" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Je" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Ve" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Sa" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Fermer" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Heure" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minute" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Fait" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Sélectionnez les fichiers" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "Ajouter des fichiers à la file d'attente de téléversement, puis cliquez sur le bouton Démarrer." + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Ajouter des fichiers" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Arrêter le Téléversement" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Démarrer le Téléversement" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "Ajouter des fichiers" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Téléversement de %d/%d fichiers" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "Faites glisser les fichiers ici." + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "Erreur d'extension du fichier." + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "Erreur de la Taille de Fichier." + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "Erreur de comptage des fichiers." + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "Erreur d'initialisation." + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "Erreur HTTP." + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "Erreur de sécurité." + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "Erreur générique." + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "Erreur d'E/S." + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "Fichier: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d fichiers en file d'attente" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "Fichier:%f, taille: %s, taille de fichier maximale: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "L'URL de téléversement est peut être erronée ou inexistante" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "Erreur: Fichier trop grand: " + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "Erreur: extension de fichier non valide: " + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Définir par défaut" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "Créer une entrée" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "Éditer l'enregistrement de l'historique" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Pas d'émission" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Copié %s ligne(s)%s dans le presse papier" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sVue Imprimante%s Veuillez utiliser la fonction d'impression de votre navigateur pour imprimer ce tableau. Appuyez sur échapper lorsque vous avez terminé." + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "Nouvelle émission" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "Nouvelle entrée de log" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "Suivant" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "Annuler la publication" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "Auteur" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Description" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "Lien" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "Activé" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "Désactivé" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "Le contenu des playlists automatiques est ajouté aux émissions une heure avant leur départ. Plus d'informations" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "Bloc intelligent" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "À l'antenne" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "Hors antenne" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "Éteint" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "Aucun programme" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "Veuillez entrer vos identifiants." + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "Cet identifiant ou adresse mail n'a pu être trouvé." + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "Il y a un problème avec l'identifiant ou adresse mail que vous avez entré." + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Mauvais nom d'utilisateur ou mot de passe fourni. S'il vous plaît essayez de nouveau." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Vous visualisez l'ancienne version de %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Liste de lecture Sans Titre" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Bloc intelligent Sans Titre" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Liste de lecture inconnue" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Préférences mises à jour." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Réglages du Flux mis à jour." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "le chemin doit être spécifié" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problème avec Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "Cette méthode de requête ne peut aboutir" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rediffusion de l'émission %s de %s à %s" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Sélectionner le Curseur" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Enlever le Curseur" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "l'émission n'existe pas" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Utilisateur ajouté avec succès!" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Utilisateur mis à jour avec succès!" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Paramètres mis à jour avec succès!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Flux Web sans Titre" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Flux Web sauvegardé." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Valeurs du formulaire non valides." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Caractère Invalide saisi" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Le Jour doit être spécifié" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "La durée doit être spécifiée" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Vous devez attendre au moins 1 heure pour retransmettre" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "Ajouter une playlist automatique ?" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "Sélectionner la playlist" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Répéter la playlist jusqu'à ce que l'émission soit pleine ?" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "Utilisez l'authentification %s :" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Utiliser l'authentification personnalisée:" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Nom d'utilisateur personnalisé" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Mot de Passe personnalisé" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "Hôte:" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "Port:" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "Point de Montage:" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "Le champ Nom d'Utilisateur ne peut pas être vide." + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "Le champ Mot de Passe ne peut être vide." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Enregistrer à partir de 'Line In'?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rediffusion?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "jours" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Lien:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Type de Répétition:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "hebdomadaire" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "toutes les 2 semaines" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "toutes les 3 semaines" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "toutes les 4 semaines" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensuel" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Selection des Jours:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Répétition par:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "jour du mois" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "jour de la semaine" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Date de Fin:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Sans Fin?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "La Date de Fin doit être postérieure à la Date de Début" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Veuillez sélectionner un jour de répétition" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Couleur de Fond:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Couleur du Texte:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "Logo actuel:" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "Montrer le logo:" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Prévisualisation du logo:" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nom:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Émission sans Titre" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Description:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Description de l'élément:" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Heure de début:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "À venir:" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "Temps de fin:" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Durée:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Fuseau horaire:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Répétitions?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Impossible de créer un émission dans le passé" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "La date/heure de Fin ne peut être dans le passé" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Ne peut pas avoir une durée <0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Ne peut pas avoir une durée de 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Ne peut pas avoir une durée supérieure à 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Ne peux pas programmer des émissions qui se chevauchent" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Recherche d'utilisateurs:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Utilisateur:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Mot de Passe:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Vérification du Mot de Passe:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Prénom:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Nom:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Courriel:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Numéro de Mobile:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Type d'utilisateur:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Le Nom de connexion n'est pas unique." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Supprimer toutes les pistes de la librairie" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Date de Début:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titre:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Créateur:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Année:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Label:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Compositeur:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conducteur:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Atmosphère:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "Numéro ISRC:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Site Internet:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Langue:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "Publier..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Heure de Début" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Heure de Fin" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Fuseau horaire de l'interface:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Nom de la Station" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "Description de la station" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Logo de la Station:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Remarque: Tout ce qui est plus grand que 600x600 sera redimensionné." + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "Durée du fondu enchaîné:" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "Veuillez entrer un temps en secondes (par exemple 0.5)" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "Fondu en Entrée par défaut (s):" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "Fondu en Sorti par défaut (s):" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "Remplacer les metatags de l'épisode" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents." + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement." + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "API publique LibreTime" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "Requis pour le widget de programmation." + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" +"L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n" +" à des widgets externes pouvant être intégrés à votre site Web." + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "URLs CORS autorisées" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "URL distantes autorisées à accéder à cette instance LibreTime dans un navigateur. Une URL par ligne." + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "Langage par défaut" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Fuseau horaire de la Station" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "La semaine commence le" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "Afficher le bouton de connexion sur votre page radio?" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "Arrêt automatique:" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "Mise en marche automatique:" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "Changement de transition en fondu (s):" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "Hôte source maître:" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "Port source maître:" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "Seuls les chiffres sont autorisés." + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "Point de montage - Source Maître:" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "Hôte - Source Émission:" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "Port - Source Émission:" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "Point de montage - Source Émission:" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Connexion" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "Mot de Passe" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "Confirmez le nouveau mot de passe" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "La confirmation du mot de passe ne correspond pas à votre mot de passe." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Email" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Utilisateur" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Réinitialisation du Mot de Passe" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Retour" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "En Lecture" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "Sélectionnez un flux:" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "Détecter automatiquement le flux le plus approprié à utiliser." + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "Sélectionnez un flux:" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr " - Interface mobile" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr " - Le lecteur ne fonctionne pas avec des flux Opus." + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "Code à intégrer:" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur." + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "Prévisualisation:" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Feed Privacy" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Publique" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privé" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "Langage de la station" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "Filtrer par émissions" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Toutes mes émissions:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "Mes émissions" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Selectionner le critère" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Taux d'Echantillonage (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Taux d'Echantillonage (Khz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "heures" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutes" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "éléments" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Aléatoirement" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Plus récent" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Plus vieux" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Type:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamique" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statique" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "Autoriser la répétition de pistes:" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "Autoriser la dernière piste à dépasser l'horaire:" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "Trier les pistes:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Limiter à:" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Génération de la liste de lecture et sauvegarde des crières" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Contenu de la liste de lecture alèatoire" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Aléatoire" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "La Limite ne peut être vide ou plus petite que 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "La Limite ne peut être supérieure à 24 heures" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "La valeur doit être un entier" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 est la valeur maximale de l'élément que vous pouvez définir" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Vous devez sélectionner Critères et Modification" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "La 'Durée' doit être au format '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "La valeur doit être numérique" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "La valeur doit être inférieure à 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "La valeur doit être inférieure à %s caractères" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "La Valeur ne peut pas être vide" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "Sortie audio matérielle:" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "Type de Sortie" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "ALSA" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "AO" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "OSS" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "Portaudio" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "Pulseaudio" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "Jack" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Metadata Vorbis" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "Label du Flux:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "Artiste - Titre" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "Émission - Artiste - Titre" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "Nom de la Station - Nom de l'émission" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "Métadonnées Hors Antenne" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "Activer" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "Modifier le Niveau du Gain" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "Serveur de Streaming:" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "Streaming personnalisé / tiers" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "Streaming par défaut" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Activé:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "Mobile:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Type de Flux:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Débit:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Type de service:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Cannaux:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Serveur" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Nom" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Point de Montage" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Utilisateur Admin" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Mot de Passe Admin" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Le Serveur ne peut être vide." + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Le Port ne peut être vide." + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast." + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Pousser les métadonnées sur votre station sur TuneIn?" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Identifiant de la station:" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Clé partenaire:" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "ID partenaire:" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez." + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Répertoire d'importation:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Répertoires Suveillés:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "N'est pas un Répertoire valide" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Une valeur est requise, ne peut pas être vide" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne correspond pas au format de la date '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' est inférieur à %min% charactères" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' est plus grand de %min% charactères" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Les mots de passe ne correspondent pas" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5361,7 +3915,7 @@ msgstr "" "\n" "Veuillez cliquer sur ce lien pour réinitialiser votre mot de passe: " -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5372,7 +3926,7 @@ msgstr "" "\n" "En cas de problèmes, contactez notre équipe de support: %s" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5385,20 +3939,138 @@ msgstr "" "Merci,\n" "L'équipe %s" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s Réinitialisation du mot de passe" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Le points d'entrée et de sortie sont indéfinis." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Ne peut pas fixer un point de sortie plus grand que la durée du fichier." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Impossible de définir un point d'entrée plus grand que le point de sortie." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Ne peux pas fixer un point de sortie plus petit que le point d'entrée." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "Temps de téléversement" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "Vide" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s déjà examiné(s)." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contient un répertoire surveillé imbriqué: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s est imbriqué avec un répertoire surveillé existant: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s n'est pas un répertoire valide." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s est déjà défini comme le répertoire de stockage courant ou dans la liste des dossiers surveillés" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s est déjà défini comme espace de stockage courant ou dans la liste des répertoires surveillés." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s n'existe pas dans la liste surveillée." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "Propulsé par %s" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Selectionner le Pays" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "diffusion en direct" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Vous ne pouvez pas déplacer les éléments sur les émissions liées" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Le calendrier que vous consultez n'est pas à jour! (décalage calendaire)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "La programmation que vous consultez n'est pas à jour! (décalage d'instance)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Le calendrier que vous consultez n'est pas à jour!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Vous n'êtes pas autorisé à programme l'émission %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Vous ne pouvez pas ajouter des fichiers à des émissions enregistrées." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "L émission %s est terminé et ne peut pas être programmé." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "L'émission %s a été précédemment mise à jour!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "Le contenu des émissions liées ne peut pas être changé en cours de diffusion !" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Vous ne pouvez pas programmer une liste de lecture qui contient des fichiers manquants." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Un fichier sélectionne n'existe pas!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Les émissions peuvent avoir une durée maximale de 24 heures." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5406,103 +4078,864 @@ msgstr "" "Ne peux pas programmer des émissions qui se chevauchent. \n" "Remarque: Le redimensionnement d'une émission répétée affecte l'ensemble de ses répétitions." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "Temps de téléversement" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rediffusion de %s à %s" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "Page de la radio" +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "La durée doit être supérieure à 0 minute" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendrier" +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "La durée doit être de la forme \"00h 00m\"" -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "Widgets" +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL doit être de la forme \"http://domain\"" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "Paramètres" +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "L'URL doit être de 512 caractères ou moins" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Utilisateurs" +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Aucun type MIME trouvé pour le Flux Web." -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Le Nom du Flux Web ne peut être vide" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Impossible d'analyser la Sélection XSPF" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Impossible d'analyser la Sélection PLS" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Impossible d'analyser la Séléction M3U" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Flux Web Invalide - Ceci semble être un fichier téléchargeable." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Type de flux non reconnu: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "L'enregistrement du fichier n'existe pas" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Afficher les métadonnées du fichier enregistré" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Ajouter des pistes" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "Vider le contenu de l'émission" + +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "Annuler l'émission" + +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "Modifier cet élément" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Édition de l'émission" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "Supprimer cet élément" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "Supprimer cet élément et tous les suivants" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Permission refusée" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Impossible de déplacer une émission déjà diffusée" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Impossible de déplacer une émission dans le passé" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Doit attendre 1 heure pour retransmettre." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Piste" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Joué" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Flux" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Flux web" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "Statistiques" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Modèle d'historique" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Statistiques des auditeurs" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Mise en route" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Manuel Utilisateur" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "Qu'est-ce qui a changé ?" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "Impossible de se connecter au serveur RabbitMQ! Veuillez vérifier si le serveur est en cours d'exécution et que vos informations d'identification sont correctes." -#~ msgid "Facebook" -#~ msgstr "Facebook" +#~ msgid " to " +#~ msgstr " à " -#~ msgid "Upgrade" -#~ msgstr "Amélioration" +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s est distribué sous %3$s" -#~ msgid "Billing" -#~ msgstr "Facturation" +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, le logiciel ouvert de gestion et de programmation pour vos stations distantes." -#~ msgid "Account Plans" -#~ msgstr "Plan du compte" +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s copyright © %2$s Tous droits réservés.
Maintenu et distribué sous les %3$s par %4$s" + +#, php-format +#~ msgid "%s Version" +#~ msgstr "Version %s" + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Pour la promotion de votre station, 'Envoyez vos remarques au support' doit être activé)." + +#~ msgid "(Required)" +#~ msgstr "(Requis)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(Site Internet de la Station de Radio)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(à des fins de vérification uniquement, ne sera pas publié)" + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" + +#~ msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#~ msgstr "
Voici une pré-visualisation du contenu qui peut être généré par le bloc intelligent basé sur le critère ci-dessus." + +#~ msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead." +#~ msgstr " Remarque: Puisque vous êtes le propriétaire de la station, les informations de votre compte peuvent être modifiées dans les paramètres de facturation ." + +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Un lien de réinitialisation du mot de passe a été envoyé à votre adresse e-mail. Veuillez vérifier votre email et suivez les instructions à l'intérieur pour réinitialiser votre mot de passe. Si vous ne voyez pas l'e-mail, veuillez vérifier votre dossier spam!" + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Une liste de pistes est générée lorsque vous programmez ce bloc intelligent dans une émission." + +#~ msgid "About" +#~ msgstr "A propos" + +#~ msgid "Access Denied!" +#~ msgstr "Accès refusé !" #~ msgid "Account Details" #~ msgstr "Détails du compte" -#~ msgid "View Invoices" -#~ msgstr "Voir factures" +#~ msgid "Account Plans" +#~ msgstr "Plan du compte" + +#~ msgid "Add New Field" +#~ msgstr "Ajouter un nouveau champ" + +#~ msgid "Add more elements" +#~ msgstr "Ajouter plus d'éléments" + +#~ msgid "Add this show" +#~ msgstr "Ajouter cette émission" + +#~ msgid "Add tracks to your show" +#~ msgstr "Ajouter des pistes à l'émission" + +#~ msgid "Additional Options" +#~ msgstr "Options supplémentaires" + +#~ msgid "Advanced Search Options" +#~ msgstr "Options Avancées de Recherche" + +#~ msgid "Advanced options" +#~ msgstr "Options avancées" + +#~ msgid "Airtime Pro has a new look!" +#~ msgstr "Airtime Pro fait peau neuve!" + +#~ msgid "All rights are reserved" +#~ msgstr "Tous droits réservés" + +#~ msgid "An error has occurred." +#~ msgstr "Une erreur est survenue." + +#~ msgid "Audio Track" +#~ msgstr "Piste Audio" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Playlist automatique" + +#~ msgid "Bad Request!" +#~ msgstr "Cette requête est incorrecte !" + +#~ msgid "Billing" +#~ msgstr "Facturation" + +#~ msgid "Billing cycle:" +#~ msgstr "Facturation:" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ." + +#~ msgid "Category" +#~ msgstr "Catégorie" + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "Cochez les cases ci-dessus et cliquez sur 'Publier' pour publier cette piste sur les sources marquées." + +#~ msgid "Choose Days:" +#~ msgstr "Choisissez des jours:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Choisissez une instance" + +#~ msgid "Choose folder" +#~ msgstr "Choisir le répertoire" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Choisissez certains critères de recherche ci-dessus et cliquez sur Générer pour créer cette liste de lecture." + +#~ msgid "City:" +#~ msgstr "Ville:" + +#~ msgid "Clear" +#~ msgstr "Vider" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Cliquez sur 'Calendrier' dans la barre de navigation à gauche. Puis cliquez sur le bouton '+ Nouvelle émission' et remplissez les informations requises." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Cliquez sur une émission dans le calendrier et sélectionnez 'Programmer l'émission'. Dans la fenêtre qui s'affiche déplacez des pistes sur votre émission." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Cliquez sur le bouton 'Téléversement' dans le coin gauche pour ajouter des pistes à votre librairie." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Cliquez sur la case ci-dessous pour promouvoir votre station sur %s ." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Le contenu des émissions liés doit être programmé avant ou après sa diffusion" + +#~ msgid "Country:" +#~ msgstr "Pays:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Création du fichier Modèle d'Historique" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Création du modèle de fichier de Log" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution Pas de Travaux Dérivés" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Non Commercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Distribution à l'Identique" + +#~ msgid "Credit Card via 2Checkout" +#~ msgstr "Carte de crédit via 2Checkout" + +#~ msgid "Cue In: " +#~ msgstr "Point d'entrée " + +#~ msgid "Cue Out: " +#~ msgstr "Point de Sortie: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Répertoire d'importation:" + +#~ msgid "Cursor" +#~ msgstr "Curseur" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ " copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "Personnalisez le lecteur en configurant les options ci-dessous. Lorsque vous avez terminé, \\ n copiez le code intégrable ci-dessous et collez-le dans le code HTML de votre site Web." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "Les DJs peuvent utiliser ces paramètres dans leur logiciel de diffusion pour diffuser en direct les émissions qui leurs sont assignées." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "Les DJs peuvent utiliser ces réglages pour se connecter à cette émission et la diffuser en direct. Assignez un DJ ci-dessous." + +#~ msgid "Dangerous Options" +#~ msgstr "Options dangereuses" + +#~ msgid "Dashboard" +#~ msgstr "Tableau de bord" + +#~ msgid "Default Length:" +#~ msgstr "Durée par Défaut:" + +#~ msgid "Default License:" +#~ msgstr "Licence par Défaut:" + +#~ msgid "Default Sharing Type:" +#~ msgstr "Type de partage par défaut:" + +#~ msgid "Disk Space" +#~ msgstr "Espace Disque" + +#~ msgid "Download latest episodes:" +#~ msgstr "Télécharger les derniers épisodes:" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Faites glisser les pistes ici de votre bibliothèque pour les ajouter à la liste de lecture" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Faites glisser les fichiers ici ou cliquez pour parcourir votre ordinateur." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Bloc intelligent Dynamique" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Critère(s) du bloc intelligent Dynamique: " + +#~ msgid "Edit Metadata..." +#~ msgstr "Modifier les méta-données..." + +#~ msgid "Editing " +#~ msgstr "Edition " + +#~ msgid "Email Sent!" +#~ msgstr "Email envoyé!" + +#~ msgid "Empty playlist content" +#~ msgstr "Vider le contenu de la Liste de Lecture" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Ettendre le Bloc Dynamique" + +#~ msgid "Expand Static Block" +#~ msgstr "Ettendre le bloc Statique" + +#~ msgid "Explicit" +#~ msgstr "Explicite" #~ msgid "FAQ" #~ msgstr "Questions - réponses" +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Lecteur Radio Facebook" + +#~ msgid "Fade in: " +#~ msgstr "Fondu en entrée: " + +#~ msgid "Fade in: " +#~ msgstr "Fondu dans: " + +#~ msgid "Fade out: " +#~ msgstr "Fondu en sortie: " + +#~ msgid "Failed" +#~ msgstr "Échoués" + +#~ msgid "File Path:" +#~ msgstr "Chemin du fichier:" + +#~ msgid "File Summary" +#~ msgstr "Résumé du fichier" + +#~ msgid "File Summary Templates" +#~ msgstr "Modèle de fichier d'historique" + #~ msgid "File a Support Ticket" #~ msgstr "Remplir un ticket au support" +#~ msgid "File import in progress..." +#~ msgstr "Import du Fichier en cours..." + +#~ msgid "Filter History" +#~ msgstr "Filtre de l'historique" + +#~ msgid "Find" +#~ msgstr "Trouver" + +#~ msgid "Find Shows" +#~ msgstr "Trouver émissions" + +#~ msgid "First Name" +#~ msgstr "Prénom" + +#, php-format +#~ msgid "" +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "Pour plus d' informations sur ce que ces champs de métadonnées signifient, s'il vous plaît voir le %s RSS spécification %s \\ n ou %s la documentation de podcasting Apple %s ." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Pour une aide plus détaillée, lisez le %smanuel utilisateur%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Pour plus de détails, s'il vous plaît lire le %sManuel d'Airtime%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Mot de passe oublié ?" + +#~ msgid "General Fields" +#~ msgstr "Champs généraux" + +#~ msgid "Generate Smartblock and Playlist" +#~ msgstr "Générer Bloc intelligent et Playlist" + +#~ msgid "Global" +#~ msgstr "Global" + +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "Vous avez une énorme bibliothèque de musique? Aucun problème! Avec la nouvelle page Téléverser, vous pouvez faire glisser des dossiers entiers dans notre cloud privé." + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Aidez à améliorer %s en nous indiquant comment vous l'utilisez. Ces informations seront collectées régulièrement afin d'améliorer votre expérience utilisateur.
Cliquez sur la case ci-dessous pour nous assurer que les fonctionnalités que vous utilisez s'améliorent constamment." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Voici comment vous pouvez commencer à utiliser %s pour automatiser vos émissions: " + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Si Airtime est derrière un routeur ou un pare-feu, vous devrez peut-être configurer la redirection de port et ce champ d'information sera alors incorrect.Dans ce cas, vous devrez mettre à jour manuellement ce champ de sorte qu'il affiche l'hôte/le port /le point de montage correct dont le DJ a besoin pour s'y connecter. La plage autorisée est comprise entre 1024 et 49151." + +#~ msgid "In what city did you meet your spouse/significant other?" +#~ msgstr "Dans quelle ville avez-vous rencontré votre compagnon(ne) ?" + +#~ msgid "In what city or town was your first job?" +#~ msgstr "Dans quelle ville ou village avez-vous eu votre premier travail ?" + +#~ msgid "Isrc Number:" +#~ msgstr "Numéro ISRC:" + +#~ msgid "Keywords" +#~ msgstr "Mots-clés" + +#~ msgid "Last Name" +#~ msgstr "Nom" + +#~ msgid "Length:" +#~ msgstr "Durée:" + +#~ msgid "Limit to " +#~ msgstr "Limité à " + +#~ msgid "Listen" +#~ msgstr "Ecouter" + +#~ msgid "Listeners" +#~ msgstr "Les auditeurs" + +#~ msgid "Live Broadcasting" +#~ msgstr "Diffusion en direct" + +#~ msgid "Live Stream Input" +#~ msgstr "Entrée du Flux Direct" + +#~ msgid "Live stream" +#~ msgstr "Flux Live" + +#~ msgid "Log Sheet" +#~ msgstr "Fichier de Log" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Modèles de fichiers de Log" + +#~ msgid "Logout" +#~ msgstr "Déconnexion" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "On dirait que la page que vous cherchez n'existe pas !" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Il n'y a pas d'émissions prévues aujourd'hui." + +#~ msgid "Manage Users" +#~ msgstr "Gérer les Utilisateurs" + +#~ msgid "Master Source" +#~ msgstr "Source Maitre" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Utilisation mensuelle de la bande passante de l'auditeur" + +#~ msgid "New Criteria" +#~ msgstr "Nouveau critère" + +#~ msgid "New File Summary Template" +#~ msgstr "Nouveau modèle de fichier d'Historique" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nouveau modèle de fichier de Log" + +#~ msgid "New Modifier" +#~ msgstr "Nouveau modificateur" + +#~ msgid "New User" +#~ msgstr "Nouvel Utilisateur" + +#~ msgid "New password" +#~ msgstr "Nouveau mot de passe" + +#~ msgid "Next:" +#~ msgstr "Prochain:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Aucun modèle de fichier d'historique" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Aucun modèles de fichiers de Log" + +#~ msgid "No open playlist" +#~ msgstr "Pas de Liste de Lecture Ouverte" + +#~ msgid "No smart block currently open" +#~ msgstr "Aucun bloc intelligent actuellement ouvert" + +#~ msgid "No webstream" +#~ msgstr "Aucun Flux Web" + +#~ msgid "Now you're good to go!" +#~ msgstr "Vous en savez assez à présent !" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "DIRECT" + +#~ msgid "Oops!" +#~ msgstr "Mince !" + +#~ msgid "Original Length:" +#~ msgstr "Durée Originale:" + +#~ msgid "" +#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" +#~ " is easier than ever." +#~ msgstr "Notre nouvelle vue Tableau de bord dispose désormais d'une puissante interface d'édition par onglets. La mise à jour de vos pistes et de vos listes de lecture est donc plus simple que jamais." + +#~ msgid "Output Streams" +#~ msgstr "Flux de sortie" + +#~ msgid "Override" +#~ msgstr "Ecraser" + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Remplacer le nom de l'album par le nom du podcast durant le remplacement." + +#~ msgid "Page not found!" +#~ msgstr "Page non trouvée !" + +#~ msgid "Password Reset" +#~ msgstr "Réinitialisation du mot de passe" + +#~ msgid "PayPal" +#~ msgstr "PayPal" + +#~ msgid "Payment method:" +#~ msgstr "Méthode de paiement:" + +#~ msgid "Pending" +#~ msgstr "En attente" + +#~ msgid "Phone:" +#~ msgstr "Téléphone:" + +#~ msgid "Plan type:" +#~ msgstr "Type de plan:" + +#~ msgid "Play" +#~ msgstr "Lecture" + +#~ msgid "Playlist Contents: " +#~ msgstr "Contenus de la Liste de Lecture: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Fondu enchaîné de la Liste de Lecture" + +#~ msgid "Playout History Templates" +#~ msgstr "Modèles d'historique de diffusion" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "S'il vous plaît saisir et confirmer votre nouveau mot de passe dans les champs ci-dessous." + +#~ msgid "Please upgrade to " +#~ msgstr "SVP mettez vous à jour vers" + +#~ msgid "Podcast Name: " +#~ msgstr "Nom du podcast: " + +#~ msgid "Podcast URL: " +#~ msgstr "URL du podcast: " + +#~ msgid "Podcasts" +#~ msgstr "Podcasts" + +#~ msgid "Previous:" +#~ msgstr "Précédent:" + +#~ msgid "Privacy Settings" +#~ msgstr "Paramètres de sécurité" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Les gestionnaires pouvent effectuer les opérations suivantes:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promouvoir station sur %s" + +#~ msgid "Publish to:" +#~ msgstr "Publier vers:" + +#~ msgid "Published on:" +#~ msgstr "Publié le:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "Les pistes publiées peuvent être supprimées ou mises à jour ci-dessous." + +#~ msgid "Publishing" +#~ msgstr "Publication" + +#~ msgid "RESET" +#~ msgstr "Réinitialiser" + +#~ msgid "RSS Feed URL:" +#~ msgstr "URL du feed RSS:" + +#~ msgid "Recent Uploads" +#~ msgstr "Ajouts récents" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Enregistrement & Rediffusion" + +#~ msgid "Register Airtime" +#~ msgstr "Enregistrez Airtime" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Supprimer tout le contenu de ce bloc intelligent" + +#~ msgid "Remove watched directory" +#~ msgstr "Supprimer le répertoire surveillé" + +#~ msgid "Repeat Days:" +#~ msgstr "Jours de répétition:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Rescanner le répertoire surveillé (Ce qui peut être utile si il est sur le réseau et est peut être désynchronisé de %s)" + +#~ msgid "Sample Rate:" +#~ msgstr "Fréquence d'échantillonnage:" + +#~ msgid "Save playlist" +#~ msgstr "Sauvegarde de la Liste de Lecture" + +#~ msgid "Save podcast" +#~ msgstr "Sauvegarder le podcast" + +#~ msgid "Save station podcast" +#~ msgstr "Sauvegarder le podcast de la station" + +#~ msgid "Schedule a show" +#~ msgstr "Programmer une émission" + +#~ msgid "Scheduled Shows" +#~ msgstr "Émissions programmées" + +#~ msgid "Scheduling:" +#~ msgstr "Programmation:" + +#~ msgid "Search Criteria:" +#~ msgstr "Critères de recherche:" + +#~ msgid "Select stream:" +#~ msgstr "Selection du Flux:" + +#~ msgid "Service" +#~ msgstr "Un service" + +#~ msgid "Set" +#~ msgstr "Installer" + +#~ msgid "Set Cue In" +#~ msgstr "Placer le Point d'Entré" + +#~ msgid "Set Cue Out" +#~ msgstr "Placer le Point de Sortie" + +#~ msgid "Set Default Template" +#~ msgstr "Définir le modèle par défaut" + +#~ msgid "Share" +#~ msgstr "Partager" + +#~ msgid "Show Source" +#~ msgstr "Source de l'émission" + +#~ msgid "Show Summary" +#~ msgstr "Historique Emision" + +#~ msgid "Show Waveform" +#~ msgstr "Montrer la Forme d'Onde" + +#~ msgid "Show me what I am sending " +#~ msgstr "Montrez-moi ce que je vais envoyer " + +#~ msgid "Shuffle playlist" +#~ msgstr "Liste de Lecture Aléatoire" + +#~ msgid "Smartblock and Playlist Generated" +#~ msgstr "Bloc intelligent et playlist générés" + +#~ msgid "Source Streams" +#~ msgstr "Sources des Flux" + +#~ msgid "Static Smart Block" +#~ msgstr "Bloc intelligent Statique" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Contenus du bloc intelligent Statique: " + +#~ msgid "Station Description:" +#~ msgstr "Description de la Station:" + +#~ msgid "Station Web Site:" +#~ msgstr "Site Internet de la Station:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Flux " + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Statut de collecte de données de flux" + +#~ msgid "Stream Settings" +#~ msgstr "Réglages des Flux" + +#~ msgid "Stream URL:" +#~ msgstr "URL du Flux:" + +#~ msgid "Stream URL: " +#~ msgstr "URL du Flux: " + +#~ msgid "Style" +#~ msgstr "Style" + +#~ msgid "Subscribe" +#~ msgstr "S'abonner" + +#~ msgid "Subtitle" +#~ msgstr "Sous-titre" + +#~ msgid "Summary" +#~ msgstr "Sommaire" + +#~ msgid "Super Admin details can be changed in your Billing Settings." +#~ msgstr "Les détails du super administrateur peuvent être modifiés dans vos paramètres de facturation ." + +#~ msgid "Support Feedback" +#~ msgstr "Remarques au support" + +#~ msgid "Support setting updated." +#~ msgstr "Réglages du Support mis à jour." + +#~ msgid "Table Test" +#~ msgstr "Test de table" + +#~ msgid "Terms and Conditions" +#~ msgstr "Termes et Conditions" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "La longueur du bloc souhaité ne sera pas atteint si de temps d'antenne ne peut pas trouver suffisamment de pistes uniques en fonction de vos critères. Activez cette option si vous souhaitez autoriser les pistes à s'ajouter plusieurs fois dans le bloc intelligent." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Les informations suivantes seront affichées aux auditeurs dans leur lecteur multimédia:" + +#~ msgid "" +#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" +#~ " experience, no matter how you're connected." +#~ msgstr "" +#~ "Le nouveau temps d'antenne est plus fluide, plus élégant et plus rapide - sur encore plus d'appareils! Nous nous\n" +#~ " sommes engagés à améliorer l'expérience Airtime, quelle qu'en soit votre utilisation." + +#~ msgid "The requested action is not supported!" +#~ msgstr "L'action demandée n'est pas implémentée !" + +#~ msgid "The work is in the public domain" +#~ msgstr "Ce travail est dans le domaine public" + +#~ msgid "This version is no longer supported." +#~ msgstr "Cette version n'est plus supportée." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Cette version sera bientôt obsolête." + +#~ msgid "" +#~ "To add the Radio Tab to your Facebook Page, you must first:

\n" +#~ " Enable the Public Airtime API under Settings -> Preferences" +#~ msgstr "" +#~ "Pour ajouter l'onglet Radio à votre page Facebook, vous devez d'abord:

\n" +#~ "\t Activez l'API Publique Airtime sous Paramètres -> Préférences" + #~ msgid "" #~ "To configure and use the embeddable player you must:

\n" #~ " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" @@ -5512,6 +4945,10 @@ msgstr "Impossible de se connecter au serveur RabbitMQ! Veuillez vérifier si le #~ "\t 1. Activer au mois un flux MP3, AAC ou OGG dans Paramètres -> Flux
\n" #~ "\t 2. Activer l'API publique de Airtime dans Paramètres -> Préférences" +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Pour lire le média, vous devrez mettre à jour votre navigateur vers une version récente ou mettre à jour votre %sPlugin Flash%s." + #~ msgid "" #~ "To use the embeddable weekly schedule widget you must:

\n" #~ " Enable the Public Airtime API under Settings -> Preferences" @@ -5519,144 +4956,56 @@ msgstr "Impossible de se connecter au serveur RabbitMQ! Veuillez vérifier si le #~ "Pour utiliser ce widget affichant la programmation hebdomadaire vous devez:

\n" #~ "\t Activer l'API publique Airtime dans Paramètres -> Préférences" -#~ msgid "" -#~ "To add the Radio Tab to your Facebook Page, you must first:

\n" -#~ " Enable the Public Airtime API under Settings -> Preferences" -#~ msgstr "" -#~ "Pour ajouter l'onglet Radio à votre page Facebook, vous devez d'abord:

\n" -#~ "\t Activez l'API Publique Airtime sous Paramètres -> Préférences" +#~ msgid "Toggle Details" +#~ msgstr "Basculer les détails" -#~ msgid "View track" -#~ msgstr "Voir la piste" +#~ msgid "Track:" +#~ msgstr "Piste:" -#~ msgid "Update track" -#~ msgstr "Mettre la piste à jour" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "La longueur du bloc souhaité ne sera pas atteint si de temps d'antenne ne peut pas trouver suffisamment de pistes uniques en fonction de vos critères. Activez cette option si vous souhaitez autoriser les pistes à s'ajouter plusieurs fois dans le bloc intelligent." - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Si Airtime est derrière un routeur ou un pare-feu, vous devrez peut-être configurer la redirection de port et ce champ d'information sera alors incorrect.Dans ce cas, vous devrez mettre à jour manuellement ce champ de sorte qu'il affiche l'hôte/le port /le point de montage correct dont le DJ a besoin pour s'y connecter. La plage autorisée est comprise entre 1024 et 49151." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Pour plus de détails, s'il vous plaît lire le %sManuel d'Airtime%s" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Les gestionnaires pouvent effectuer les opérations suivantes:" - -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Bienvenue dans LibreTime !" - -#~ msgid "Support setting updated." -#~ msgstr "Réglages du Support mis à jour." - -#~ msgid "Support Feedback" -#~ msgstr "Remarques au support" - -#~ msgid "What is the name of your favorite childhood friend?" -#~ msgstr "Quel est le nom de votre meilleur ami d'enfance ?" - -#~ msgid "What school did you attend for sixth grade?" -#~ msgstr "Où étiez-vous au collège ?" - -#~ msgid "In what city did you meet your spouse/significant other?" -#~ msgstr "Dans quelle ville avez-vous rencontré votre compagnon(ne) ?" - -#~ msgid "What street did you live on in third grade?" -#~ msgstr "Dans quelle rue viviez-vous en classe de CE2 ?" - -#~ msgid "What is the first name of the boy or girl that you first kissed?" -#~ msgstr "Comment s'appelait la première personne que vous avez embrassé ?" - -#~ msgid "In what city or town was your first job?" -#~ msgstr "Dans quelle ville ou village avez-vous eu votre premier travail ?" - -#~ msgid "Plan type:" -#~ msgstr "Type de plan:" - -#~ msgid "Billing cycle:" -#~ msgstr "Facturation:" - -#~ msgid "Payment method:" -#~ msgstr "Méthode de paiement:" - -#~ msgid "PayPal" -#~ msgstr "PayPal" - -#~ msgid "Credit Card via 2Checkout" -#~ msgstr "Carte de crédit via 2Checkout" +#~ msgid "TuneIn Settings" +#~ msgstr "Réglages TuneIn" #~ msgid "Type the characters you see in the picture below." #~ msgstr "Saisissez les caractères que vous voyez dans l'image ci-dessous." -#~ msgid "Phone:" -#~ msgstr "Téléphone:" +#~ msgid "Update Required" +#~ msgstr "Mise à Jour Requise" -#~ msgid "Station Web Site:" -#~ msgstr "Site Internet de la Station:" +#~ msgid "Update show" +#~ msgstr "Mettre à jour l'émission" -#~ msgid "Country:" -#~ msgstr "Pays:" +#~ msgid "Update track" +#~ msgstr "Mettre la piste à jour" -#~ msgid "City:" -#~ msgstr "Ville:" +#~ msgid "Upgrade" +#~ msgstr "Amélioration" -#~ msgid "Station Description:" -#~ msgstr "Description de la Station:" +#~ msgid "Upload" +#~ msgstr "Téléversement" -#~ msgid "Promote my station on %s" -#~ msgstr "Promouvoir station sur %s" +#~ msgid "Upload audio tracks" +#~ msgstr "Téléverser des pistes sonores" -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ." +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Utilisez ces paramètres dans votre logiciel de diffusion pour diffuser en direct à tout moment." -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Vous devez accepter la politique de confidentialité." +#~ msgid "User Type" +#~ msgstr "Type d'Utilisateur" -#~ msgid "Default License:" -#~ msgstr "Licence par Défaut:" +#~ msgid "View Feed" +#~ msgstr "Voir le feed" -#~ msgid "All rights are reserved" -#~ msgstr "Tous droits réservés" +#~ msgid "View Invoices" +#~ msgstr "Voir factures" -#~ msgid "The work is in the public domain" -#~ msgstr "Ce travail est dans le domaine public" +#~ msgid "View track" +#~ msgstr "Voir la piste" -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" +#~ msgid "Viewing " +#~ msgstr "Affichage " -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Non Commercial" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution Pas de Travaux Dérivés" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Distribution à l'Identique" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique" - -#~ msgid "Default Sharing Type:" -#~ msgstr "Type de partage par défaut:" - -#~ msgid "Airtime Pro has a new look!" -#~ msgstr "Airtime Pro fait peau neuve!" - -#~ msgid "" -#~ "Your favorite features are now even easier to use - and we've even\n" -#~ " added a few new ones! Check out the video above or read on to find out more." -#~ msgstr "" -#~ "Vos fonctionnalités préférées sont encore plus faciles à utiliser - et nous en avons même \n" -#~ " ajouté quelques nouvelles! Regardez la vidéo ci-dessus ou lisez la suite pour en savoir plus." - -#~ msgid "" -#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -#~ " is easier than ever." -#~ msgstr "Notre nouvelle vue Tableau de bord dispose désormais d'une puissante interface d'édition par onglets. La mise à jour de vos pistes et de vos listes de lecture est donc plus simple que jamais." +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "Nous n'avons pu trouver la page que vous cherchiez." #~ msgid "" #~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" @@ -5665,78 +5014,119 @@ msgstr "Impossible de se connecter au serveur RabbitMQ! Veuillez vérifier si le #~ "Nous avons rationalisé l'interface Airtime pour faciliter la navigation. Avec les outils les plus importants\n" #~ " à portée de clic, vous serez en direct et les mains libres en un rien de temps." -#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -#~ msgstr "Vous avez une énorme bibliothèque de musique? Aucun problème! Avec la nouvelle page Téléverser, vous pouvez faire glisser des dossiers entiers dans notre cloud privé." +#~ msgid "Web Stream" +#~ msgstr "Flux Web" + +#~ msgid "Webstream" +#~ msgstr "Flux web" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Bienvenue à %s !" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Bienvenue à la démo %s ! Vous pouvez vous connecter en utilisant le nom d'utilisateur «admin» et le mot de passe «admin» ." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Bienvenue dans LibreTime !" + +#~ msgid "What" +#~ msgstr "Quoi" + +#~ msgid "What is the first name of the boy or girl that you first kissed?" +#~ msgstr "Comment s'appelait la première personne que vous avez embrassé ?" + +#~ msgid "What is the name of your favorite childhood friend?" +#~ msgstr "Quel est le nom de votre meilleur ami d'enfance ?" + +#~ msgid "What school did you attend for sixth grade?" +#~ msgstr "Où étiez-vous au collège ?" + +#~ msgid "What street did you live on in third grade?" +#~ msgstr "Dans quelle rue viviez-vous en classe de CE2 ?" + +#~ msgid "When" +#~ msgstr "Quand" + +#~ msgid "Who" +#~ msgstr "Qui" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Vous ne surveillez pas les dossiers médias." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Vous pouvez les changer plus tard dans vos préférences et réglages utilisateurs." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "Vous n'avez pas la permission d'accéder à cette page !" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "Vous n'avez pas la permission de modifier cette piste." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "Vous avez déjà publié cette piste sur toutes les sources disponibles!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Vous devez accepter la politique de confidentialité." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "Vous n'avez pas publié cette piste à aucune source!" #~ msgid "" -#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -#~ " experience, no matter how you're connected." +#~ "Your favorite features are now even easier to use - and we've even\n" +#~ " added a few new ones! Check out the video above or read on to find out more." #~ msgstr "" -#~ "Le nouveau temps d'antenne est plus fluide, plus élégant et plus rapide - sur encore plus d'appareils! Nous nous\n" -#~ " sommes engagés à améliorer l'expérience Airtime, quelle qu'en soit votre utilisation." - -#~ msgid "Note: Since you're the station owner, your account information can be edited in Billing Settings instead." -#~ msgstr " Remarque: Puisque vous êtes le propriétaire de la station, les informations de votre compte peuvent être modifiées dans les paramètres de facturation ." - -#~ msgid "Register Airtime" -#~ msgstr "Enregistrez Airtime" - -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Aidez à améliorer %s en nous indiquant comment vous l'utilisez. Ces informations seront collectées régulièrement afin d'améliorer votre expérience utilisateur.
Cliquez sur la case ci-dessous pour nous assurer que les fonctionnalités que vous utilisez s'améliorent constamment." - -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Cliquez sur la case ci-dessous pour promouvoir votre station sur %s ." - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(à des fins de vérification uniquement, ne sera pas publié)" - -#~ msgid "Show me what I am sending " -#~ msgstr "Montrez-moi ce que je vais envoyer " - -#~ msgid "Terms and Conditions" -#~ msgstr "Termes et Conditions" - -#~ msgid "files meet the criteria" -#~ msgstr "ces fichiers correspondent aux critères" - -#~ msgid "file meets the criteria" -#~ msgstr "ce fichier correspond aux critères" - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Pour la promotion de votre station, 'Envoyez vos remarques au support' doit être activé)." - -#~ msgid "Viewing " -#~ msgstr "Affichage " - -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Utilisation mensuelle de la bande passante de l'auditeur" +#~ "Vos fonctionnalités préférées sont encore plus faciles à utiliser - et nous en avons même \n" +#~ " ajouté quelques nouvelles! Regardez la vidéo ci-dessus ou lisez la suite pour en savoir plus." #~ msgid "Your trial expires in" #~ msgstr "Votre période d'essai expire dans" -#~ msgid "Smartblock and Playlist Generated" -#~ msgstr "Bloc intelligent et playlist générés" +#~ msgid "and" +#~ msgstr "et" -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Remplacer le nom de l'album par le nom du podcast durant le remplacement." +#~ msgid "dB" +#~ msgstr "dB" -#~ msgid "Record & Rebroadcast" -#~ msgstr "Enregistrement & Rediffusion" +#~ msgid "file meets the criteria" +#~ msgstr "ce fichier correspond aux critères" -#~ msgid "Super Admin details can be changed in your Billing Settings." -#~ msgstr "Les détails du super administrateur peuvent être modifiés dans vos paramètres de facturation ." +#~ msgid "files meet the criteria" +#~ msgstr "ces fichiers correspondent aux critères" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Cette version sera bientôt obsolête." +#~ msgid "iTunes Fields" +#~ msgstr "Champs pour iTunes" -#~ msgid "This version is no longer supported." -#~ msgstr "Cette version n'est plus supportée." +#~ msgid "id" +#~ msgstr "id" -#~ msgid "Please upgrade to " -#~ msgstr "SVP mettez vous à jour vers" +#~ msgid "max volume" +#~ msgstr "volume max" + +#~ msgid "mute" +#~ msgstr "sourdine" + +#~ msgid "next" +#~ msgstr "suivant" + +#~ msgid "or" +#~ msgstr "ou" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "jouer" #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "s'il vous plaît mettez dans une durée en secondes '00 (.0) '" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Le contenu des émissions liés doit être programmé avant ou après sa diffusion" +#~ msgid "previous" +#~ msgstr "précédent" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "désactiver" diff --git a/legacy/locale/hr_HR/LC_MESSAGES/libretime.po b/legacy/locale/hr_HR/LC_MESSAGES/libretime.po index 8231ded2f..2c6bac229 100644 --- a/legacy/locale/hr_HR/LC_MESSAGES/libretime.po +++ b/legacy/locale/hr_HR/LC_MESSAGES/libretime.po @@ -1,2495 +1,1603 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Sourcefabric , 2013 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Croatian (Croatia) (http://www.transifex.com/sourcefabric/airtime/language/hr_HR/)\n" +"Language-Team: Croatian (Croatia)\n" "Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Prijava" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Godine %s moraju biti u rasponu od 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nova lozinka" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Unesi i potvrdi svoju novu lozinku u polja dolje." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Povijest puštenih pjesama" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Popis Prijava" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Datotečni Sažetak" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Programski Sažetak" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Upravljanje Medijske Mape" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Prijenosne Postavke" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Spremi" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Prijenos" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Obavezno)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Dodatne Opcije" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Sljedeće informacije će biti prikazane slušateljima u medijskom plejerima:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Tvoja radijska postaja web stranice)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL Prijenosa:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "ili" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "i" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "do" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Odaberi Emisijsku Stupnju" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Nema Programa" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Nađi" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Odaberi mapu" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Podesi" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Aktualna Uvozna Mapa:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Dodaj" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s nije ispravan datum" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Ukloni nadzoranu direktoriju" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Ne pratiš nijedne medijske mape." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Odaberi Dane:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Ukloni" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Ponovljeni Dani:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Nađi Emisije" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtriraj Povijesti" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Emisijski Izvor" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Majstorski Izvor" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "Ok" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s nije ispravan datum" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Upravljanje Korisnike" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Novi Korisnik" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Korisničko ime" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Ime" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Prezime" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Tip Korisnika" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Proširenje Statičkog Bloka" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Proširenje Dinamičkog Bloka" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Naziv:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Opis:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Trajanje:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Slučajni izbor popis pjesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Miješanje" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Križno utišavanje popis pjesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Prazan sadržaj popis pjesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Očisti" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Zatamnjenje:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Otkaži" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Spremi popis pjesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Nema otvorenih popis pjesama" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Emisijski zvučni talasni oblik" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Odtamnjenje:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Izvorna Dužina:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "u upotrebi" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Sve" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Napredne Opcije Pretraživanja" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Opis" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL Prijenosa:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Zadana Dužina:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Nema prijenosa" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Zatvori" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Naziv" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Tvorac" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Jezik" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Autorsko pravo" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Uvoz datoteke je u tijeku..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Naziv:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Tvorac:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Pjesma:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Dužina:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Uzorak Stopa:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Brzina u Bitovima:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Raspoloženje:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Žanr:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Godina:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Naljepnica:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Kompozitor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Dirigent:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Autorsko pravo:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc Broj:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Web stranica:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Jezik:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Staža Datoteka:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Prijenos" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dinamički Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statički Smart Block" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Zvučni Zapis" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Sadržaji Popis Pjesama:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Statički Smart Block Sadržaji:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dinamički Smart Block Kriteriji:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Ograničeno za" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Stanje" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Diskovni Prostor" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "prethodna" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Kalendar" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "pokreni" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pauza" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "sljedeća" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "zaustavi" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "nijemi" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "uključi" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "max glasnoća" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Potrebno Ažuriranje" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Medija je potrebna za reprodukciju, i moraš ažurirati svoj preglednik na noviju verziju, ili ažurirati svoj %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Stvaranje Predložaka za Datotečni Sažeci" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Stvaranje Popis Predložaka" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Dodaj više elemenata" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Dodaj Novo Polje" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Postavi Zadano Predlošku" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Predlošci Popis Prijave" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Novi Popis Predložaka" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Nema Popis Predložaka" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Postavi Zadano" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Predlošci za Datotečni Sažeci" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Novi Predložak za Datotečni Sažeci" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Nema Predložaka za Datotečni Sažeci" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "O projektu" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Za detaljnu pomoć, pročitaj %skorisnički priručnik%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Prijenos uživo" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Podijeli" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Prijenosi:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Dodaj ovu emisiju" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Ažuriranje emisije" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Što" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Kada" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Ulaz Uživnog Prijenosa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Tko" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Stil" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Početak" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Naziv" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Dužina" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Žanr" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Naljepnica" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Prethodna:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Sljedeća:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Prijenosni Izvori" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "PRIJENOS" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Slušaj" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Odjava" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Popisi pjesama" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Block-ovi" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Korisnici" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Prijenosi" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Stanje" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Povijest puštenih pjesama" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Povijesni Predlošci" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Slušateljska Statistika" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Pomoć" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Početak Korištenja" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Priručnik" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Stranica nije pronađena!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Izgleda stranica koju si tražio ne postoji!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Uređaj" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Pokreni" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Zaustavi" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Podesi Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Podesi Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Pokazivač" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Odtamnjenje" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Zatamnjenje" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Nemaš dopuštenje isključiti izvor." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Nema spojenog izvora na ovaj ulaz." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Nemaš dozvolu za promjenu izvora." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno podešen." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovno." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Neimenovani Prijenos" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Prijenos je spremljen." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Nevažeći vrijednosti obrasca." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Korisnik je uspješno dodan!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Korisnik je uspješno ažuriran!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Postavke su uspješno ažurirane!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Pregled" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Odaberi pokazivač" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Ukloni pokazivač" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Izbriši" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "emisija ne postoji" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Postavke su ažurirane." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Prijenos Podešavanje je Ažurirano." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "put bi trebao biti specificiran" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem sa Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nije pronađen" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Nešto je pošlo po krivu." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Dodaj na Popis Pjesama" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Dodaj u Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Preuzimanje" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Udvostručavanje" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Nema dostupnih akcija" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Nemaš dopuštenje za brisanje odabrane stavke." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopiranje od %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Molimo, provjeri da li je ispravan/na admin korisnik/lozinka na stranici Sustav->Prijenosi." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Ne smiješ pristupiti ovog izvora." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Ne smiješ pristupiti ovog izvora." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Neispravan zahtjev." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Neispravan zahtjev" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Nemaš dopuštenje isključiti izvor." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Nema spojenog izvora na ovaj ulaz." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Nemaš dozvolu za promjenu izvora." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Gledaš stariju verziju %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Ne možeš dodavati pjesme za dinamične blokove." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." +msgid "%s not found" +msgstr "%s nije pronađen" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Možeš samo pjesme dodavati za pametnog bloka." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Nešto je pošlo po krivu." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Možeš samo dodati pjesme, pametne blokova, i prijenose kod popise pjesama." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Pregled" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Neimenovani Popis Pjesama" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Dodaj na Popis Pjesama" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Neimenovani Smart Block" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Dodaj u Smart Block" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Nepoznati Popis Pjesama" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Izbriši" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Preuzimanje" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Udvostručavanje" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Nema dostupnih akcija" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Nemaš dopuštenje za brisanje odabrane stavke." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopiranje od %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Molimo, provjeri da li je ispravan/na admin korisnik/lozinka na stranici Sustav->Prijenosi." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Uređaj" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Snimanje:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Majstorski Prijenos" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Prijenos Uživo" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Ništa po rasporedu" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Trenutna Emisija:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Trenutna" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Ti imaš instaliranu najnoviju verziju" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Nova verzija je dostupna:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Dodaj u trenutni popis pjesama" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Dodaj u trenutni smart block" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Dodavanje 1 Stavke" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Dodavanje %s Stavke" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Možeš dodavati samo pjesme kod pametnih blokova." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Možeš samo dodati pjesme, pametne blokova, i prijenose kod popise pjesama." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Molimo odaberi mjesto pokazivača na vremenskoj crti." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Dodaj" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Uredi" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Ukloni" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Uredi Metapodatke" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Dodaj u odabranoj emisiji" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Odaberi" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Odaberi ovu stranicu" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Odznači ovu stranicu" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Odznači sve" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Jesi li siguran da želiš izbrisati odabranu (e) stavku (e)?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Zakazana" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Naziv" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Tvorac" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Prijenos Bita" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Kompozitor" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Dirigent" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Autorsko pravo" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Kodirano je po" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Žanr" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Naljepnica" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Jezik" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Zadnja Izmjena" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Zadnji Put Odigrano" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Dužina" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mimika" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Raspoloženje" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Vlasnik" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Uzorak Stopa" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Broj Pjesma" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Dodano" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Web stranica" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Godina" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Učitavanje..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Sve" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Datoteke" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Popisi pjesama" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Block-ovi" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Prijenosi" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Nepoznati tip:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Jesi li siguran da želiš obrisati odabranu stavku?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Prijenos je u tijeku..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Preuzimanje podataka s poslužitelja..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Šifra pogreške:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Poruka o pogrešci:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Mora biti pozitivan broj" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Mora biti broj" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Mora biti u obliku: gggg-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Mora biti u obliku: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Trenutno je prijenos datoteke. %sOdlazak na drugom ekranu će otkazati proces slanja. %sJesi li siguran da želiš napustiti stranicu?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Otvori Medijskog Graditelja" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "molimo stavi u vrijeme '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Tvoj preglednik ne podržava ovu vrstu audio datoteku:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Dinamički blok nije dostupan za pregled" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Ograničiti se na:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Popis pjesama je spremljena" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Popis pjesama je izmiješan" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Airtime je nesiguran o statusu ove datoteke. To se također može dogoditi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktoriji, koja se više nije 'praćena tj. nadzirana'." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Broj Slušalaca %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Podsjeti me za 1 tjedan" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Nikad me više ne podsjeti" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Da, pomažem Airtime-u" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Slika mora biti jpg, jpeg, png, ili gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Statički pametni blokovi spremaju kriterije i odmah generiraju blok sadržaja. To ti omogućuje da urediš i vidiš ga u knjižnici prije nego što ga dodaš na emisiju." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Dinamički pametni blokovi samo kriterije spremaju. Blok sadržaja će se generira nakon što ga dodate na emisiju. Nećeš moći pregledavati i uređivati sadržaj u knjižnici." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart block je izmiješan" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Smart block je generiran i kriterije su spremne" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Smart block je spremljen" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Obrada..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Odaberi modifikator" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "sadrži" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "ne sadrži" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "je" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "nije" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "počinje sa" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "završava sa" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "je veći od" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "je manji od" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "je u rasponu" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Generiraj" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Odaberi Mapu za Skladištenje" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Odaberi Mapu za Praćenje" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2497,2855 +1605,2301 @@ msgstr "" "Jesi li siguran da želiš promijeniti mapu za pohranu?\n" "To će ukloniti datoteke iz tvoje knjižnice!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Upravljanje Medijske Mape" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Jesi li siguran da želiš ukloniti nadzorsku mapu?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Ovaj put nije trenutno dostupan." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Neke vrste emitiranje zahtijevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovdje dostupni." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Priključen je na poslužitelju" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Prijenos je onemogućen" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Dobivanje informacija sa poslužitelja..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Ne može se povezati na poslužitelju" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Provjeri ovu opciju kako bi se omogućilo metapodataka za OGG potoke." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Provjeri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Provjeri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Ako tvoj Icecast poslužitelj očekuje korisničko ime iz 'izvora', ovo polje može ostati prazno." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo biti 'izvor'." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Upozorenje: Ne možeš promijeniti sadržaj polja, dok se sadašnja emisija ne završava" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Nema pronađenih rezultata" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "To slijedi isti uzorak sigurnosti za emisije: samo dodijeljeni korisnici se mogu povezati na emisiju." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Odredi prilagođene autentikacije koje će se uvažiti samo za ovu emisiju." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Emisija u ovom slučaju više ne postoji!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Upozorenje: Emisije ne može ponovno se povezati" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stavka u svakoj ponavljajućim emisijama dobit će isti raspored također i u drugim ponavljajućim emisijama" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Vremenska zona je postavljena po staničnu zonu prema zadanim. Emisije u kalendaru će se prikazati po tvojim lokalnom vremenu koja je definirana u sučelji vremenske zone u tvojim korisničkim postavcima." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Program" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Emisija je prazna" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Dobivanje podataka s poslužitelja..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Ova emisija nema zakazanog sadržaja." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Ova emisija nije u potpunosti ispunjena sa sadržajem." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Siječanj" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Veljača" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Ožujak" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Travanj" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Svibanj" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Lipanj" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Srpanj" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Kolovoz" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Rujan" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Listopad" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Studeni" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Prosinac" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Sij" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Vel" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Ožu" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Tra" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Lip" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Srp" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Kol" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Ruj" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Lis" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Stu" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Pro" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Nedjelja" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Ponedjeljak" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Utorak" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Srijeda" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Četvrtak" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Petak" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Subota" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Ned" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Pon" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Uto" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Sri" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Čet" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Pet" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sub" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Emisija dulje od predviđenog vremena će biti odsječen." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Otkaži Trenutnog Programa?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Zaustavljanje snimanje emisije?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ok" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Sadržaj Emisije" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Ukloniš sve sadržaje?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Obrišeš li odabranu(e) stavku(e)?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Početak" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Završetak" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Trajanje" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Odtamnjenje" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Zatamnjenje" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Prazna Emisija" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Snimanje sa Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Pregled pjesma" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Ne može se zakazivati izvan emisije." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Premještanje 1 Stavka" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Premještanje %s Stavke" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Spremi" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Otkaži" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Uređivač za (Od-/Za-)tamnjivanje" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Cue Uređivač" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Valni oblik značajke su dostupne u sporednu Web Audio API pregledniku" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Odaberi sve" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Ne odaberi ništa" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Ukloni odabrane zakazane stavke" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Skoči na trenutnu sviranu pjesmu" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Poništi trenutnu emisiju" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Otvori knjižnicu za dodavanje ili uklanjanje sadržaja" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Dodaj / Ukloni Sadržaj" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "u upotrebi" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disk" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Pogledaj unutra" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Otvori" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Administrator" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "Disk-džokej" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Voditelj Programa" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Gost" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Gosti mogu učiniti sljedeće:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Pregled rasporeda" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Pregled sadržaj emisije" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "Disk-džokeji mogu učiniti sljedeće:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Upravljanje dodijeljen sadržaj emisije" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Uvoz medijske datoteke" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Izradi popise naslova, smart block-ove, i prijenose" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Upravljanje svoje knjižničnog sadržaja" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Prikaz i upravljanje sadržaj emisije" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Rasporedne emisije" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Upravljanje sve sadržaje knjižnica" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Administratori mogu učiniti sljedeće:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Upravljanje postavke" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Upravljanje korisnike" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Upravljanje nadziranih datoteke" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Pošalji povratne informacije" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Pregled stanja sustava" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Pristup za povijest puštenih pjesama" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Pogledaj statistiku slušatelje" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Pokaži/sakrij stupce" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Od {from} do {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "gggg-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Ne" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Po" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Ut" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Sr" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Če" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Pe" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Su" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Zatvori" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Sat" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuta" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Gotovo" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Odaberi datoteke" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Dodaj Datoteke" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Zaustavi Upload" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Pokreni upload" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Dodaj datoteke" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Poslana %d/%d datoteka" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Povuci datoteke ovdje." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Pogreška (datotečni nastavak)." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Pogreška veličine datoteke." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Pogreška broj datoteke." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Init pogreška." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "HTTP pogreška." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Sigurnosna pogreška." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Generička pogreška." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "IO pogreška." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Datoteka: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d datoteka na čekanju" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Prijenosni URL može biti u krivu ili ne postoji" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Pogreška: Datoteka je prevelika:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Pogreška: Nevažeći datotečni nastavak:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Postavi Zadano" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Stvaranje Unosa" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Uredi Povijest Zapisa" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Nema Programa" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s red%s je kopiran u međumemoriju" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sIspis pogled%sMolimo, koristi preglednika ispis funkciju za ispis ovu tablicu. Kad završiš, pritisni Escape." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Opis" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Omogućeno" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Onemogućeno" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno podešen." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovno." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Gledaš stariju verziju %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Ne možeš dodavati pjesme za dinamične blokove." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Možeš samo pjesme dodavati za pametnog bloka." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Neimenovani Popis Pjesama" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Neimenovani Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Nepoznati Popis Pjesama" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Postavke su ažurirane." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Prijenos Podešavanje je Ažurirano." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "put bi trebao biti specificiran" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem sa Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Reemitiranje emisija %s od %s na %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Odaberi pokazivač" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Ukloni pokazivač" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "emisija ne postoji" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Snimljena datoteka ne postoji" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Metapodaci Snimljenog Fajla" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Korisnik je uspješno dodan!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Korisnik je uspješno ažuriran!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Postavke su uspješno ažurirane!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Uredi Programa" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Neimenovani Prijenos" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Prijenos je spremljen." -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Nevažeći vrijednosti obrasca." -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Dozvola odbijena" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Uneseni su nevažeći znakovi" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Dan mora biti naveden" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Ne možeš premjestiti događane emisije" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Vrijeme mora biti navedeno" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Ne možeš premjestiti emisiju u prošlosti" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Ne možeš zakazati preklapajuće emisije" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Ne možeš premjestiti snimljene emisije ranije od 1 sat vremena prije njenih reemitiranja." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Moraš pričekati 1 sat za re-emitiranje." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Pjesma" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Vrijeme Početka" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Vrijeme Završetka" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Pušteno" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Odaberi kriterije" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Brzina u Bitovima (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Uzorak Stopa (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "sati" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minuti" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "elementi" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinamički" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statički" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generiranje popisa pjesama i spremanje sadržaja kriterije" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Sadržaj slučajni izbor popis pjesama" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ograničenje ne može biti prazan ili manji od 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ograničenje ne može biti više od 24 sati" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Vrijednost mora biti cijeli broj" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 je max stavku graničnu vrijednost moguće je podesiti" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Moraš odabrati Kriteriju i Modifikaciju" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Dužina' trebala biti u '00:00:00' obliku" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Vrijednost mora biti u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Vrijednost mora biti numerička" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Vrijednost bi trebala biti manja od 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Vrijednost mora biti manja od %s znakova" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Vrijednost ne može biti prazna" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Broj:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Uvozna Mapa:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Mape Pod Nadzorom:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Ne valjana Direktorija" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Tip Ponavljanje:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "tjedno" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "svaka 2 tjedna" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "svaka 3 tjedna" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "svaka 4 tjedna" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "mjesečno" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Odaberi Dane:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Ponavljanje Po:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "dan u mjesecu" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "dan u tjednu" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Datum Završetka:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nema Kraja?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Datum završetka mora biti nakon datuma početka" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Molimo, odaberi kojeg dana" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Vrijednost je potrebna i ne može biti prazan" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Vremenska Zona:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Ponavljanje?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Ne može se stvoriti emisije u prošlosti" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Ne možeš mijenjati datum/vrijeme početak emisije, ako je već počela" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Datum završetka i vrijeme ne može biti u prošlosti" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Ne može trajati < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Ne može trajati 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Ne može trajati više od 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Korisničko ime:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Lozinka:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Potvrdi Lozinku:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Ime:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Prezime:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobitel:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Vrsta Korisnika:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Ime prijave nije jedinstveno." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Koristi Prilagođeno provjeru autentičnosti:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Prilagođeno Korisničko Ime" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Prilagođena Lozinka" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "'Korisničko Ime' polja ne smije ostati prazno." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "'Lozinka' polja ne smije ostati prazno." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Snimanje sa Line In?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Stanična Vremenska Zona" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ponovno emitirati?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dani" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tip Ponavljanje:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Datum Početka:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "tjedno" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Uneseni su nevažeći znakovi" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "svaka 2 tjedna" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Traži Korisnike:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "svaka 3 tjedna" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Disk-Džokeji:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "svaka 4 tjedna" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mjesečno" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Sve Moje Emisije:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Odaberi Dane:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Ponavljanje Po:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "dan u mjesecu" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "dan u tjednu" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Datum Završetka:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Nema Kraja?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Datum završetka mora biti nakon datuma početka" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Molimo, odaberi kojeg dana" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Boja Pozadine:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Boja Teksta:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Dan mora biti naveden" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Naziv:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Vrijeme mora biti navedeno" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Neimenovan Program" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Žanr:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Opis:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Trajanje:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Vremenska Zona:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Ponavljanje?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Ne može se stvoriti emisije u prošlosti" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Ne možeš mijenjati datum/vrijeme početak emisije, ako je već počela" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Datum završetka i vrijeme ne može biti u prošlosti" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Ne može trajati < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Ne može trajati 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Ne može trajati više od 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Ne možeš zakazati preklapajuće emisije" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Traži Korisnike:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Disk-Džokeji:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Korisničko ime:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Lozinka:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Potvrdi Lozinku:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Ime:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Prezime:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobitel:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Vrsta Korisnika:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Ime prijave nije jedinstveno." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Datum Početka:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Naziv:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Tvorac:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Godina:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Naljepnica:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Kompozitor:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Raspoloženje:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Autorsko pravo:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Broj:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Web stranica:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Jezik:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Vrijeme Početka" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Vrijeme Završetka" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Vremenska Zona Sučelja:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Naziv Postaje" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Napomena: Sve veća od 600x600 će se mijenjati." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Zadano Trajanje Križno Stišavanje (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Zadano Odtamnjenje (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Zadano Zatamnjenje (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Stanična Vremenska Zona" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Prvi Dan u Tjednu" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Snimanje sa Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ponovno emitirati?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Resetuj lozinku" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Dopušteni su samo brojevi." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Prijava" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Lozinka" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Potvrdi novu lozinku" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Lozinke koje ste unijeli ne podudaraju se." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Korisničko ime" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Resetuj lozinku" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "dani" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Omogućeno:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Prijenos Tipa:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tip Usluge:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanali:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Poslužitelj" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Točka Montiranja" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Korisnik" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Lozinka" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Poslužitelj ne može biti prazan." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port ne može biti prazan." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Montiranje ne može biti prazna s Icecast poslužiteljem." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Vremenska Zona Sučelja:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Trenutno Izvođena" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne odgovara po obliku datuma '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Sve Moje Emisije:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' je manji od %min% dugačko znakova" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' je više od %max% dugačko znakova" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Odaberi kriterije" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nije između '%min%' i '%max%', uključivo" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Brzina u Bitovima (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Lozinke se ne podudaraju" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Uzorak Stopa (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "sati" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuti" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "elementi" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamički" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statički" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generiranje popisa pjesama i spremanje sadržaja kriterije" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Sadržaj slučajni izbor popis pjesama" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Miješanje" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ograničenje ne može biti prazan ili manji od 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ograničenje ne može biti više od 24 sati" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Vrijednost mora biti cijeli broj" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 je max stavku graničnu vrijednost moguće je podesiti" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Moraš odabrati Kriteriju i Modifikaciju" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Dužina' trebala biti u '00:00:00' obliku" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Vrijednost mora biti u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Vrijednost mora biti numerička" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Vrijednost bi trebala biti manja od 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Vrijednost mora biti manja od %s znakova" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Vrijednost ne može biti prazna" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis Metapodaci" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Vidljivi Podaci:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Autor - Naziv" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Program - Autor - Naziv" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Naziv postaje - Naziv programa" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Off Air Metapodaci" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Omogući Replay Gain" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Replay Gain Modifikator" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Godine %s moraju biti u rasponu od 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s nije ispravan datum" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s nije ispravan datum" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Omogućeno:" -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Prijenos Tipa:" -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Brzina u Bitovima:" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Tip Usluge:" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanali:" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Poslužitelj" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Naziv" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Točka Montiranja" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin Korisnik" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Admin Lozinka" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Poslužitelj ne može biti prazan." -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port ne može biti prazan." -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Montiranje ne može biti prazna s Icecast poslužiteljem." -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Uvozna Mapa:" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Mape Pod Nadzorom:" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Ne valjana Direktorija" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Vrijednost je potrebna i ne može biti prazan" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne odgovara po obliku datuma '%format%'" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' je manji od %min% dugačko znakova" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' je više od %max% dugačko znakova" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nije između '%min%' i '%max%', uključivo" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in i cue out su nule." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Duljina mora biti veća od 0 minuta" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Duljina mora biti u obliku \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL mora biti u obliku \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL mora biti 512 znakova ili manje" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Ne postoji MIME tip za prijenos." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Ime prijenosa ne može biti prazno" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Nismo mogli analizirati XSPF popis pjesama" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Nismo mogli analizirati PLS popis pjesama" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Nismo mogli analizirati M3U popis pjesama" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Nevažeći prijenos - Čini se da je ovo preuzimanje datoteka." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Nepoznati prijenosni tip: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Reemitiranje od %s od %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Odaberi Državu" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Ne možeš premjestiti stavke iz povezanih emisija" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Zastario se pregledan raspored! (nevažeći raspored)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Zastario se pregledan raspored! (primjer neusklađenost)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Zastario se pregledan raspored!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Ne smijes zakazati rasporednu emisiju %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Ne možeš dodavati datoteke za snimljene emisije." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Emisija %s je gotova i ne mogu biti zakazana." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Ranije je %s emisija već bila ažurirana!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Odabrana Datoteka ne postoji!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s je već nadziran." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s sadržava ugniježđene nadzirane direktorije: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s se nalazi unutar u postojeći nadzirani direktoriji: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s nije valjana direktorija." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s ne postoji u popisu nadziranih lokacija." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Lozinke se ne podudaraju" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5353,7 +3907,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5361,7 +3915,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5370,20 +3924,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in i cue out su nule." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Ne možeš postaviti da će 'cue out' biti veće od duljine datoteke." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Ne možeš postaviti da će 'cue in' biti veće od 'cue out'." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Ne mogu se postaviti da će 'cue out' biti manje od 'cue in'." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s je već nadziran." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s sadržava ugniježđene nadzirane direktorije: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s se nalazi unutar u postojeći nadzirani direktoriji: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s nije valjana direktorija." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s je već postavljena kao mapa za pohranu ili je između popisa praćene mape." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s ne postoji u popisu nadziranih lokacija." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Odaberi Državu" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Ne možeš premjestiti stavke iz povezanih emisija" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Zastario se pregledan raspored! (nevažeći raspored)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Zastario se pregledan raspored! (primjer neusklađenost)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Zastario se pregledan raspored!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Ne smijes zakazati rasporednu emisiju %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Ne možeš dodavati datoteke za snimljene emisije." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Emisija %s je gotova i ne mogu biti zakazana." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Ranije je %s emisija već bila ažurirana!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Odabrana Datoteka ne postoji!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Emisija može imati najveću duljinu od 24 sata." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5391,138 +4063,223 @@ msgstr "" "Ne može se zakazati preklapajuće emisije.\n" "Napomena: Promjena veličine ponovljene emisije utječe na sve njene ponavljanje" -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Reemitiranje od %s od %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Duljina mora biti veća od 0 minuta" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Duljina mora biti u obliku \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL mora biti u obliku \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL mora biti 512 znakova ili manje" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Ne postoji MIME tip za prijenos." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Ime prijenosa ne može biti prazno" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Nismo mogli analizirati XSPF popis pjesama" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Nismo mogli analizirati PLS popis pjesama" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Nismo mogli analizirati M3U popis pjesama" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Nevažeći prijenos - Čini se da je ovo preuzimanje datoteka." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Nepoznati prijenosni tip: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Snimljena datoteka ne postoji" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Metapodaci Snimljenog Fajla" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Kalendar" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Korisnici" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Uredi Programa" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Prijenosi" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Povijesni Predlošci" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Dozvola odbijena" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Slušateljska Statistika" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Ne možeš premjestiti događane emisije" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Ne možeš premjestiti emisiju u prošlosti" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Ne možeš premjestiti snimljene emisije ranije od 1 sat vremena prije njenih reemitiranja." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moraš pričekati 1 sat za re-emitiranje." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Pjesma" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Pušteno" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Početak Korištenja" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Priručnik" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Željena duljina bloka neće biti postignut jer Airtime ne mogu naći dovoljno jedinstvene pjesme koje odgovaraju tvojim kriterijima. Omogući ovu opciju ako želiš dopustiti da neke pjesme mogu se više puta ponavljati." +#~ msgid " to " +#~ msgstr "do" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Ako je iza Airtime-a usmjerivač ili vatrozid, možda ćeš morati konfigurirati polje porta prosljeđivanje i ovo informacijsko polje će biti netočan. U tom slučaju morat ćeš ručno ažurirati ovo polje, da bi pokazao točno host/port/mount da se mogu povezati tvoji Disk Džokeji. Dopušteni raspon je između 1024 i 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Kako bi se promovirao svoju stanicu, 'Pošalji povratne informacije' mora biti omogućena)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Za više detalja, pročitaj %sPriručniku za korisnike%s" +#~ msgid "(Required)" +#~ msgstr "(Obavezno)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Menadžer programa mogu učiniti sljedeće:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Tvoja radijska postaja web stranice)" -#~ msgid "Support setting updated." -#~ msgstr "Podrška postavka je ažurirana." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(služi samo za provjeru, neće biti objavljena)" -#~ msgid "Support Feedback" -#~ msgstr "Povratne Informacije" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Upiši znakove koje vidiš na slici u nastavku." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "About" +#~ msgstr "O projektu" -#~ msgid "Station Web Site:" -#~ msgstr "Web Stranica:" +#~ msgid "Add New Field" +#~ msgstr "Dodaj Novo Polje" -#~ msgid "Country:" -#~ msgstr "Država:" +#~ msgid "Add more elements" +#~ msgstr "Dodaj više elemenata" -#~ msgid "City:" -#~ msgstr "Grad:" +#~ msgid "Add this show" +#~ msgstr "Dodaj ovu emisiju" -#~ msgid "Station Description:" -#~ msgstr "Opis:" +#~ msgid "Additional Options" +#~ msgstr "Dodatne Opcije" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Moraš pristati na pravila o privatnosti." - -#~ msgid "Default License:" -#~ msgstr "Zadana Dozvola:" +#~ msgid "Advanced Search Options" +#~ msgstr "Napredne Opcije Pretraživanja" #~ msgid "All rights are reserved" #~ msgstr "Sva prava pridržana" -#~ msgid "The work is in the public domain" -#~ msgstr "Rad je u javnoj domeni" +#~ msgid "Audio Track" +#~ msgstr "Zvučni Zapis" + +#~ msgid "Choose Days:" +#~ msgstr "Odaberi Dane:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Odaberi Emisijsku Stupnju" + +#~ msgid "Choose folder" +#~ msgstr "Odaberi mapu" + +#~ msgid "City:" +#~ msgstr "Grad:" + +#~ msgid "Clear" +#~ msgstr "Očisti" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Sadržaj u povezanim emisijama mora biti zakazan prije ili poslije bilo koje emisije" + +#~ msgid "Country:" +#~ msgstr "Država:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Stvaranje Predložaka za Datotečni Sažeci" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Stvaranje Popis Predložaka" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Imenovanje" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Imenovanje Bez Izvedenih Djela" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Djela" @@ -5530,38 +4287,370 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uvjetima" -#~ msgid "Register Airtime" -#~ msgstr "Airtime Registar" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(služi samo za provjeru, neće biti objavljena)" +#~ msgid "Cue In: " +#~ msgstr "Cue In: " -#~ msgid "Show me what I am sending " -#~ msgstr "Pokaži mi što šaljem" +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " -#~ msgid "Terms and Conditions" -#~ msgstr "Uvjeti i Odredbe" +#~ msgid "Current Import Folder:" +#~ msgstr "Aktualna Uvozna Mapa:" -#~ msgid "files meet the criteria" -#~ msgstr "datoteke zadovoljavaju kriterije" +#~ msgid "Cursor" +#~ msgstr "Pokazivač" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Kako bi se promovirao svoju stanicu, 'Pošalji povratne informacije' mora biti omogućena)." +#~ msgid "Default Length:" +#~ msgstr "Zadana Dužina:" -#~ msgid "Your trial expires in" -#~ msgstr "Vaš račun istječe u" +#~ msgid "Default License:" +#~ msgstr "Zadana Dozvola:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ova verzija uskoro će biti zastario." +#~ msgid "Disk Space" +#~ msgstr "Diskovni Prostor" -#~ msgid "This version is no longer supported." -#~ msgstr "Ova verzija više nije podržana." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dinamički Smart Block" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dinamički Smart Block Kriteriji:" + +#~ msgid "Empty playlist content" +#~ msgstr "Prazan sadržaj popis pjesama" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Proširenje Dinamičkog Bloka" + +#~ msgid "Expand Static Block" +#~ msgstr "Proširenje Statičkog Bloka" + +#~ msgid "Fade in: " +#~ msgstr "Odtamnjenje:" + +#~ msgid "Fade out: " +#~ msgstr "Zatamnjenje:" + +#~ msgid "File Path:" +#~ msgstr "Staža Datoteka:" + +#~ msgid "File Summary" +#~ msgstr "Datotečni Sažetak" + +#~ msgid "File Summary Templates" +#~ msgstr "Predlošci za Datotečni Sažeci" + +#~ msgid "File import in progress..." +#~ msgstr "Uvoz datoteke je u tijeku..." + +#~ msgid "Filter History" +#~ msgstr "Filtriraj Povijesti" + +#~ msgid "Find" +#~ msgstr "Nađi" + +#~ msgid "Find Shows" +#~ msgstr "Nađi Emisije" + +#~ msgid "First Name" +#~ msgstr "Ime" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Za detaljnu pomoć, pročitaj %skorisnički priručnik%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Za više detalja, pročitaj %sPriručniku za korisnike%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Ako je iza Airtime-a usmjerivač ili vatrozid, možda ćeš morati konfigurirati polje porta prosljeđivanje i ovo informacijsko polje će biti netočan. U tom slučaju morat ćeš ručno ažurirati ovo polje, da bi pokazao točno host/port/mount da se mogu povezati tvoji Disk Džokeji. Dopušteni raspon je između 1024 i 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Broj:" + +#~ msgid "Last Name" +#~ msgstr "Prezime" + +#~ msgid "Length:" +#~ msgstr "Dužina:" + +#~ msgid "Limit to " +#~ msgstr "Ograničeno za" + +#~ msgid "Listen" +#~ msgstr "Slušaj" + +#~ msgid "Live Stream Input" +#~ msgstr "Ulaz Uživnog Prijenosa" + +#~ msgid "Live stream" +#~ msgstr "Prijenos uživo" + +#~ msgid "Log Sheet" +#~ msgstr "Popis Prijava" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Predlošci Popis Prijave" + +#~ msgid "Logout" +#~ msgstr "Odjava" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Izgleda stranica koju si tražio ne postoji!" + +#~ msgid "Manage Users" +#~ msgstr "Upravljanje Korisnike" + +#~ msgid "Master Source" +#~ msgstr "Majstorski Izvor" + +#~ msgid "New File Summary Template" +#~ msgstr "Novi Predložak za Datotečni Sažeci" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Novi Popis Predložaka" + +#~ msgid "New User" +#~ msgstr "Novi Korisnik" + +#~ msgid "New password" +#~ msgstr "Nova lozinka" + +#~ msgid "Next:" +#~ msgstr "Sljedeća:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nema Predložaka za Datotečni Sažeci" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Nema Popis Predložaka" + +#~ msgid "No open playlist" +#~ msgstr "Nema otvorenih popis pjesama" + +#~ msgid "No webstream" +#~ msgstr "Nema prijenosa" + +#~ msgid "OK" +#~ msgstr "Ok" + +#~ msgid "ON AIR" +#~ msgstr "PRIJENOS" + +#~ msgid "Original Length:" +#~ msgstr "Izvorna Dužina:" + +#~ msgid "Page not found!" +#~ msgstr "Stranica nije pronađena!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Pokreni" + +#~ msgid "Playlist Contents: " +#~ msgstr "Sadržaji Popis Pjesama:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Križno utišavanje popis pjesama" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Unesi i potvrdi svoju novu lozinku u polja dolje." #~ msgid "Please upgrade to " #~ msgstr "Molimo nadogradi na" +#~ msgid "Previous:" +#~ msgstr "Prethodna:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Menadžer programa mogu učiniti sljedeće:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime Registar" + +#~ msgid "Remove watched directory" +#~ msgstr "Ukloni nadzoranu direktoriju" + +#~ msgid "Repeat Days:" +#~ msgstr "Ponovljeni Dani:" + +#~ msgid "Sample Rate:" +#~ msgstr "Uzorak Stopa:" + +#~ msgid "Save playlist" +#~ msgstr "Spremi popis pjesama" + +#~ msgid "Select stream:" +#~ msgstr "Prijenosi:" + +#~ msgid "Set" +#~ msgstr "Podesi" + +#~ msgid "Set Cue In" +#~ msgstr "Podesi Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Podesi Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Postavi Zadano Predlošku" + +#~ msgid "Share" +#~ msgstr "Podijeli" + +#~ msgid "Show Source" +#~ msgstr "Emisijski Izvor" + +#~ msgid "Show Summary" +#~ msgstr "Programski Sažetak" + +#~ msgid "Show Waveform" +#~ msgstr "Emisijski zvučni talasni oblik" + +#~ msgid "Show me what I am sending " +#~ msgstr "Pokaži mi što šaljem" + +#~ msgid "Shuffle playlist" +#~ msgstr "Slučajni izbor popis pjesama" + +#~ msgid "Source Streams" +#~ msgstr "Prijenosni Izvori" + +#~ msgid "Static Smart Block" +#~ msgstr "Statički Smart Block" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statički Smart Block Sadržaji:" + +#~ msgid "Station Description:" +#~ msgstr "Opis:" + +#~ msgid "Station Web Site:" +#~ msgstr "Web Stranica:" + +#~ msgid "Stop" +#~ msgstr "Zaustavi" + +#~ msgid "Stream " +#~ msgstr "Prijenos" + +#~ msgid "Stream Settings" +#~ msgstr "Prijenosne Postavke" + +#~ msgid "Stream URL:" +#~ msgstr "URL Prijenosa:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Prijenosa:" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Support Feedback" +#~ msgstr "Povratne Informacije" + +#~ msgid "Support setting updated." +#~ msgstr "Podrška postavka je ažurirana." + +#~ msgid "Terms and Conditions" +#~ msgstr "Uvjeti i Odredbe" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Željena duljina bloka neće biti postignut jer Airtime ne mogu naći dovoljno jedinstvene pjesme koje odgovaraju tvojim kriterijima. Omogući ovu opciju ako želiš dopustiti da neke pjesme mogu se više puta ponavljati." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Sljedeće informacije će biti prikazane slušateljima u medijskom plejerima:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Rad je u javnoj domeni" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ova verzija više nije podržana." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ova verzija uskoro će biti zastario." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Medija je potrebna za reprodukciju, i moraš ažurirati svoj preglednik na noviju verziju, ili ažurirati svoj %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Pjesma:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Upiši znakove koje vidiš na slici u nastavku." + +#~ msgid "Update Required" +#~ msgstr "Potrebno Ažuriranje" + +#~ msgid "Update show" +#~ msgstr "Ažuriranje emisije" + +#~ msgid "User Type" +#~ msgstr "Tip Korisnika" + +#~ msgid "Web Stream" +#~ msgstr "Prijenos" + +#~ msgid "What" +#~ msgstr "Što" + +#~ msgid "When" +#~ msgstr "Kada" + +#~ msgid "Who" +#~ msgstr "Tko" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Ne pratiš nijedne medijske mape." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Moraš pristati na pravila o privatnosti." + +#~ msgid "Your trial expires in" +#~ msgstr "Vaš račun istječe u" + +#~ msgid "and" +#~ msgstr "i" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "datoteke zadovoljavaju kriterije" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "max glasnoća" + +#~ msgid "mute" +#~ msgstr "nijemi" + +#~ msgid "next" +#~ msgstr "sljedeća" + +#~ msgid "or" +#~ msgstr "ili" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "pokreni" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "molimo stavi u vrijeme u sekundama '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Sadržaj u povezanim emisijama mora biti zakazan prije ili poslije bilo koje emisije" +#~ msgid "previous" +#~ msgstr "prethodna" + +#~ msgid "stop" +#~ msgstr "zaustavi" + +#~ msgid "unmute" +#~ msgstr "uključi" diff --git a/legacy/locale/hu_HU/LC_MESSAGES/libretime.po b/legacy/locale/hu_HU/LC_MESSAGES/libretime.po index 33ff049a1..d18284bd4 100644 --- a/legacy/locale/hu_HU/LC_MESSAGES/libretime.po +++ b/legacy/locale/hu_HU/LC_MESSAGES/libretime.po @@ -1,1897 +1,830 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: -# Zsolt Magyar , 2014. # Sourcefabric , 2012. -# Zsolt Magyar , 2015. -# miles , 2017. +# Zsolt Magyar , 2014-2015. +# Miles , 2017. +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2017-12-10 12:41+0100\n" -"Last-Translator: miles \n" -"Language-Team: Hungarian <>\n" +"Last-Translator: Miles \n" +"Language-Team: Hungarian (Hungary)\n" "Language: hu_HU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 2.0\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "Email elküldve!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "Egy jelszóvisszaállító hivatkozást küldtünk a megadott email címre. Az email tartalmazza a jelszó visszaállításához szükséges lépéseket. Ha nem érkezik meg az email, érdemes megnézni a levélszemét mappában." - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "Vissza" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Bejelentkezés" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "Üdvözöljük a %s demó változatában! „admin” felhasználónévvel és „admin” jelszóval lehet bejelentkezni." +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "Jelszó visszaállítás" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Új jelszó" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Kérjük adja meg és erősítse meg új jelszavát az alábbi mezőkben." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Lejátszási előzmények" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Napló" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Fájl összesítő" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Műsor összesítő" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Médiamappák kezelése" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "Általános" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Adásfolyam beállítások" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Mentés" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "Globális" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "Kimeneti adásfolyamok" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "Műszerfal" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "Ütemezett műsorok" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "Profilom" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Adásfolyam" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Kötelező)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "További lehetőségek" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "A következő információk megjelennek a hallgatók számára a saját médialejátszóikban:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(A rádióállomás honlapja)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Adásfolyam URL:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "TuneIn beállítások" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "Veszélyes beállítások" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "Keresési feltétel" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "vagy" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "és" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "Új módosító" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "-ig" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "Új feltétel" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Műsorpéldány kiválasztása" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Nincs műsor" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -#, fuzzy -msgid "Find" -msgstr "Találat" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Válasszon mappát" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Beállítás" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Jelenlegi import mappa:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Hozzáadás" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, fuzzy, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "A figyelt mappa újraellenőrzése (Ez akkor hasznos, ha a hálózati csatolás nincs szinkronban az %s-al)" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "A figyelt mappa eltávolítása" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Nincs megfigyelt médiamappa." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Válasszon napokat:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Eltávolítás" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Ismétlések napjai:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Műsorok keresése" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "A lejátszó testre szabható az alábbi lehetőségek beállításával. Ha kész, a lenti beágyazható kódot le lehet másolni, és beilleszteni a webhely HTML-kódjába." - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Előzmények szűrése" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Műsorforrás" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "A DJ-k ezeket a beállításokat használhatják arra, hogy kompatibilis szoftverrel csatlakozzanak, és élőben sugározzanak a műsor alatt. DJ-t lentebb lehet hozzárendelni." - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "Elfelejtett jelszó?" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "Élő közvetítés" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Mester-forrás" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "A műsorsugárzó szoftverben ezeket a beállításokat használva lehet bármikor élőben sugározni." - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "Felülírás" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "VISSZAÁLLÍTÁS" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "A DJ-k ezeket a beállításokat használhatják a műsorsugárzó szoftverükben, hogy bármikor élőben sugározhassanak a hozzájuk rendelt műsorokban." - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, fuzzy, php-format -msgid "Welcome to %s!" -msgstr "Üdvözöljük az %s-nál!" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "Később módosíthatóak a tulajdonságokban és a felhasználói beállításokban." - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "Feliratkozás" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Felhasználók kezelése" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Új felhasználó" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Felhasználónév" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Vezetéknév" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Keresztnév" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Felhasználótípus" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "Hallgatók" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "Adásfolyam adat gyűjtemény állapota" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Statikus Blokk kibővítése" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Dinamikus Blokk kibővítése" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "Ennek a lejátszási listának a létrehozásához feltételt kell választani, majd a „Létrehozás” gombra kattintani." - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "Egy sávlista lesz létrehozva amikor ez az okosblokk ütemezésre kerül egy műsorban." - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "A könyvtárból ide húzott sávok hozzá lesznek adva a lejátszási listához" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "Szerkesztés " - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Név:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Leírás:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Időtartam:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "Részletek" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Véletlenszerű lejátszási lista" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Véletlenszerű" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -#, fuzzy -msgid "Playlist crossfade" -msgstr "Lejátszási lista átúsztatása" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Üres lejátszási lista tartalom" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Törlés" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -#, fuzzy -msgid "Fade in: " -msgstr "Felkeverés:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -#, fuzzy -msgid "Fade out: " -msgstr "Lekeverés:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Mégse" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Lejátszási lista mentése" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Nincs megnyitott lejátszási lista" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Hullámforma mutatása" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(mm.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -#, fuzzy -msgid "Fade in: " -msgstr "Felúsztatás:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "Minden tartalom eltávolítása ebből az okosblokkból" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "Jelenleg nincs okosblokk nyitva" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#, fuzzy -msgid "Cue In: " -msgstr "Felkeverés:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(óó:pp:mm.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -#, fuzzy -msgid "Cue Out: " -msgstr "Lekeverés:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Eredeti hossz:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "Feltöltés" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "Sávokat ejtéssel vagy a „Böngészés” gombra kattintással lehet hozzáadni" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "használatban van" - -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/DateHelper.php:219 #, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s érvénytelen dátum" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Összes" +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s érvénytelen időpont" -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "Sikertelen" +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "English" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "Várakozó" +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "Afar" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "Korábbi feltöltések" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "Abkhazian" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Speciális keresési beállítások" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "Afrikaans" -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Leírás" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "Amharic" -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Adásfolyam URL:" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "Arabic" -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Alapértelmezett hossz:" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "Assamese" -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Nincs web-adásfolyam" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "Aymara" -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Bezárás" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "Azerbaijani" -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "Podcast neve:" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "Bashkir" -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "Podcast URL: " +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "Belarusian" -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "Legutolsó epizódok automatikus letöltése?" +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "Bulgarian" -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "Bihari" -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "Bislama" -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "Bengali/Bangla" -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "Podcast mentése" +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "Tibetan" -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "RSS hírcsatorna URL-je:" +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "Breton" -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "Podcastom" +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "Catalan" -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "Állomás-podcast mentése" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "Corsican" -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "Hírcsatorna megtekintése" +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "Czech" -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "Általános mezők" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "Welsh" -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Név" +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "Danish" -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Előadó/Szerző" +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "German" -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Nyelv" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "Bhutani" -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Szerzői jog" +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "Greek" -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "Hivatkozás" +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "Esperanto" -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "iTunes mezők" +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "Spanish" -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "Szerző" +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "Estonian" -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "Kulcsszavak" +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "Basque" -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "Összegzés" +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "Persian" -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "Felirat" +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "Finnish" -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "Kategória" +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "Fiji" -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "Szókimondó" +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "Faeroese" -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "Adatvédelmi beállítások" +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "French" -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "Frisian" -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "Irish" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "Scots/Gaelic" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "Galician" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "Guarani" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "Gujarati" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "Hausa" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "Hindi" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "Croatian" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "Magyar" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "Armenian" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "Interlingua" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "Interlingue" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "Inupiak" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "Indonesian" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "Icelandic" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "Italian" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "Hebrew" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "Japanese" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "Yiddish" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "Javanese" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "Georgian" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "Kazakh" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "Greenlandic" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "Cambodian" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "Kannada" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "Korean" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "Kashmiri" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "Kurdish" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "Kirghiz" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "Latin" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "Lingala" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "Laothian" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "Lithuanian" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "Latvian/Lettish" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "Malagasy" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "Maori" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "Macedonian" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "Malayalam" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "Mongolian" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "Moldavian" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "Marathi" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "Malay" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "Maltese" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "Burmese" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "Nauru" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "Nepali" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "Dutch" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "Norwegian" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "Occitan" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "(Afan)/Oromoor/Oriya" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "Punjabi" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "Polish" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "Pashto/Pushto" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "Portuguese" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "Quechua" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "Rhaeto-Romance" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "Kirundi" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "Romanian" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "Russian" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "Kinyarwanda" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "Sanskrit" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "Sindhi" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "Sangro" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "Serbo-Croatian" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "Singhalese" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "Slovak" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "Slovenian" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "Samoan" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "Shona" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "Somali" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "Albanian" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "Serbian" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "Siswati" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "Sesotho" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "Sundanese" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "Swedish" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "Swahili" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "Tamil" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "Tegulu" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "Tajik" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "Thai" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "Tigrinya" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "Turkmen" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "Tagalog" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "Setswana" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "Tonga" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "Turkish" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "Tsonga" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "Tatar" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "Twi" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "Ukrainian" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "Urdu" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "Uzbek" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "Vietnamese" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "Volapuk" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "Wolof" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "Xhosa" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "Yoruba" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "Chinese" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "Zulu" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Állomás alapértelmezések használata" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s." + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s." + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget." + +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -"A metaadat mezők jelentéséről részletes információk találhatóak az %sRSS specifikációban%s\n" -"vagy az %sApple podcast dokumentációban%s." +"A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n" +"%sNem hivatkozott műsor létrehozása most%s." -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Fájl importálása folyamatban..." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget" -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "Nincs jogosultsága ennek a fájlnak a szerkesztéséhez." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "Közzététel" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "Metaadat szerkesztése..." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Cím:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Létrehozó:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "Közzététel itt:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "Ez a sáv már minden elérhető forrásban közzé lett téve!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "A közzétett sávokat lentebb lehet eltávolítani vagy frissíteni." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "Közzétéve itt:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "Közzététel megszüntetése" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "Ez a sáv még egyik forrásban sincs közzétéve!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "A forrásokat bejelölve, és a lenti „Közzététel”-re kattintva lehet ezt a sávot közzétenni a megadott forrásokban." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "Közzététel" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Sáv:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Hossz:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Mintavételi ráta:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bitráta:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Hangulat:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Műfaj:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Év:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Címke:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Zeneszerző:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Karmester:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Szerzői jog:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc szám:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Honlap:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Nyelv:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Fájl elérési útvonala:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web-adásfolyam" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dinamikus okosblokk" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statikus okosblokk" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Audió sáv" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Lejátszási lista tartalmak:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Statikus okostábla tartalmak:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dinamikus okostábla feltétel:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Korlátozva" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" -msgstr "%s verzió" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s." -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "Szolgáltatás" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Állapot" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s." -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Lemezterület" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "Úgy tűnik erre a napra nincsenek műsorok ütemezve." - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "Működteti a %s" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "Következő" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "előző" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "lejátszás" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "szünet" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "következő" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "leállítás" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "elnémítás" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "elnémítás megszüntetése" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "teljes hangerő" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Frissítés szükséges" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "A média lejátszáshoz frissíteni kell a böngészőt egy újabb verzióra, vagy frissíteni kell a %sFlash bővítményt%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Fájl összesítő sablon létrehozása" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Naplózási sablon létrehozása" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Adjon hozzá több elemet" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Új mező hozzáadása" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Alapértelmezett sablon beállítása" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "Lejátszási történet sablonok" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Naplózási sablonok" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Új naplózási sablon" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Nincsenek naplózási sablonok" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Alapértelmezés beállítása" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Fájl összesítő sablonok" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Új fájl összesítő sablon" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Nincsenek fájl összesítő sablonok" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Rólunk" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, fuzzy, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, a nyitott rádiós szoftver, az ütemezett és távoli állomás menedzsment." - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, fuzzy, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s-ot %3$s mellett terjesztik" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "Így lehet elkezdeni a %s használatát a műsorsugárzás automatizálásához:" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "Audió sávok feltöltése" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "A bal sarokban található „Feltöltés” gombbal lehet sávokat feltölteni a saját könyvtárba." - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "Egy műsor ütemezése" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "A „Naptár”-ra kell kattintani a bal oldali sávon. A megjelenő felületen a „+ Új műsor” gombra kell kattintani és kitölteni a kötelező mezőket." - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "Sávok hozzáadása a műsorhoz" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "A naptárban a műsorra kattintva a „Műsor ütemezése” lehetőséget kell választani. A felugró ablakban sávokat lehet húzni a műsorba." - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "Mehet is az adás!" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "További segítségért, olvassa el a %shasználati útmutatót%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Élő adásfolyam" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Megosztás" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Adásfolyam kiválasztása:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "Táblateszt" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Adja hozzá ezt a műsort" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "A műsor frissítése" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Mi" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Mikor" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "Automatikus lejátszási lista" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Élő adásfolyam bemenet" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Kicsoda" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Stílus" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Kezdés" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Cím" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Hossz" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Műfaj" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "Rádióoldal" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Címke" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Naptár" -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" +#: application/configs/navigation.php:43 +msgid "Widgets" +msgstr "Felületi elemek" -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Előző:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Következő:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Forrás adásfolyamok" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ADÁSBAN" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Hallgatás" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Kijelentkezés" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "Sávok" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Lejátszási listák" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Okosblokkok" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Web-adásfolyamok" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "Heti ütemterv" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "Előnézet" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Beágyazható kód:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "Facebook rádiólejátszó" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "Lejátszó" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "Hiba történt." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" +msgstr "Heti ütemterv" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "Hozzáférés megtagadva!" +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "Beállítások" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "Nincs jogosultsága a lap eléréséhez!" +#: application/configs/navigation.php:74 +msgid "General" +msgstr "Általános" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "Profilom" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Felhasználók" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Adásfolyamok" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Állapot" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "Elemzések" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Lejátszási előzmények" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Naplózási sablonok" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Hallgatói statisztikák" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Segítség" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "Hoppá!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Első lépések" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "Valami hiba történt!" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Felhasználói kézikönyv" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Az oldal nem található!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "A keresett oldal nem található." - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "Rossz kérés!" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "A kért művelet nem támogatott!" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Úgy néz ki a keresett oldal nem létezik!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audió lejátszó" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Lejátszási lista" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "Okosblokk" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "Web-adásfolyam" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "Podcastok" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Lejátszás" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Leállítás" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Felkeverés" - -#: legacy/application/layouts/scripts/layout.phtml:133 -#, fuzzy -msgid "Set Cue In" -msgstr "Felkeverés Beállítása" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Lekeverés" - -#: legacy/application/layouts/scripts/layout.phtml:140 -#, fuzzy -msgid "Set Cue Out" -msgstr "Lekeverés Beállítása" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Kurzor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Felúsztatás" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Leúsztatás" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" +#: application/configs/navigation.php:183 +msgid "What's New?" +msgstr "Újdonságok" -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Nincs jogosultsága a forrás bontásához." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Nem csatlakozik forrás az alábbi bemenethez." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Nincs jogosultsága a forrás megváltoztatásához." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Kérjük adja meg felhasználónevét és jelszavát." - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "A felhasználónév vagy email cím nem található." - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel." - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Névtelen adásfolyam" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Web-adásfolyam mentve." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Érvénytelen űrlap értékek." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Oldal nem található." - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "A kiválasztott művelet nem támogatott." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "Nincs jogosultsága ennek a forrásnak az eléréséhez." - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "Belső alkalmazáshiba történt." - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Felhasználó sikeresen hozzáadva!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Felhasználó sikeresen módosítva!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Beállítások sikeresen módosítva!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Előnézet" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Kurzor kiválasztása" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Kurzor eltávolítása" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Törlés" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "a műsor nem található" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Beállítások frissítve." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Adásfolyam beállítások frissítve." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "az útvonalat meg kell határozni" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Probléma lépett fel a Liquidsoap-al..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "A kérés módja nem elfogadott" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "%s Podcast" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "Még nincsenek közzétett sávok." - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nem található" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Valami hiba történt." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Hozzáadás lejátszási listához" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Hozzáadás Okosblokkhoz" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "Szerkesztés..." - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Letöltés" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Lejátszási lista duplikálása" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Nincs elérhető művelet" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Nincs engedélye, hogy törölje a kiválasztott elemeket." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra." - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "Nem lehet törölni a fájlokat." - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "%s másolata" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Az Ön számára nem érhető el az alábbi erőforrás." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Az Ön számára nem érhető el az alábbi erőforrás." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "A fájl nem elérhető itt: %s" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Helytelen kérés. nincs 'mód' paraméter lett átadva." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Helytelen kérés. 'mód' paraméter érvénytelen." -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Nincs jogosultsága a forrás bontásához." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Nem csatlakozik forrás az alábbi bemenethez." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Nincs jogosultsága a forrás megváltoztatásához." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" @@ -1901,7 +834,7 @@ msgstr "" "1. Engedélyezni kell legalább egy MP3, AAC, vagy OGG adásfolyamot a „Beállítások -> Adásfolyamok” alatt
\n" "2. Engedélyezni kell a Public LibreTime API-t a „Beállítások -> Tulajdonságok” alatt" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" @@ -1909,7 +842,7 @@ msgstr "" "A beágyazható heti ütemezés felületi elem használatához a következőt kell tenni:

\n" "Engedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" @@ -1917,601 +850,766 @@ msgstr "" "A Rádió fül Facebook Oldalba illesztéséhez először a következőt kell tenni:

\n" "Engedélyezni kell a Public LibreTime API-t a Beállítások -> Tulajdonságok alatt" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Oldal nem található." + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "A kiválasztott művelet nem támogatott." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "Nincs jogosultsága ennek a forrásnak az eléréséhez." + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "Belső alkalmazáshiba történt." + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Ön %s egy régebbi verzióját tekinti meg" +msgid "%s Podcast" +msgstr "%s Podcast" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Dinamikus blokkokhoz nem lehet sávokat hozzáadni" +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Még nincsenek közzétett sávok." -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "A kiválasztott %s törléséhez nincs engedélye." +msgid "%s not found" +msgstr "%s nem található" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Csak sávokat lehet hozzáadni az okosblokkhoz." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Valami hiba történt." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Előnézet" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Névtelen lejátszási lista" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Hozzáadás lejátszási listához" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Névtelen okosblokk" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Hozzáadás Okosblokkhoz" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Ismeretlen lejátszási lista" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Törlés" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "Szerkesztés..." + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Letöltés" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Lejátszási lista duplikálása" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Nincs elérhető művelet" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Nincs engedélye, hogy törölje a kiválasztott elemeket." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Nem lehet törölni a fájlt mert ütemezve van egy későbbi időpontra." + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "Nem lehet törölni a fájlokat." + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "%s másolata" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Kérjük győződjön meg róla, hogy megfelelő adminisztrátori felhasználónév és jelszó van megadva a Rendszer -> Adásfolyamok oldalon." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audió lejátszó" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Valami hiba történt!" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Felvétel:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Mester-adásfolyam" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Élő adásfolyam" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Nincs semmi ütemezve" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Jelenlegi műsor:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Jelenleg" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Ön a legújabb verziót futtatja" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Új verzió érhető el:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "A LibreTime egy kiadás-előtti verziója van telepítve." -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "Egy hibajavító frissítés érhető el a LibreTimehoz." -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "Egy új funkciót tartalmazó frissítés érhető el a LibreTimehoz." -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "Elérhető a LibreTime új verzióját tartalmazó frissítés." -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "Több, a LibreTime új verzióját tartalmazó frissítés érhető el. Javasolt minél előbb frissíteni." -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Hozzáadás a jelenlegi lejátszási listához" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Hozzáadás a jelenlegi okosblokkhoz" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "1 elem hozzáadása" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "%s elem hozzáadása" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Csak sávokat lehet hozzáadni az okosblokkokhoz." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Csak sávokat, okosblokkokat és web-adásfolyamokat lehet hozzáadni a lejátszási listákhoz." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Válasszon kurzor pozíciót az idővonalon." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "Még nincsenek sávok hozzáadva" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "Még nincsenek lejátszási listák hozzáadva" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "Még nincsenek okosblokkok hozzáadva" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "Még nincsenek web-adásfolyamok hozzáadva" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "Sávok megismerése" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "Lejátszási listák megismerése" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "Podcastok megismerése" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "Okosblokkok megismerése" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "Web-adásfolyamok megismerése" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "Létrehozni az „Új” gombra kattintással lehet." -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Hozzáadás" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Szerkeszt" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Közzététel" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Eltávolítás" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Metaadatok szerkesztése" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Hozzáadás a kiválasztott műsorhoz" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Kijelölés" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Jelölje ki ezt az oldalt" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Az oldal kijelölésének megszüntetése" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Minden kijelölés törlése" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Biztos benne, hogy törli a kijelölt elemeket?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Ütemezett" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Sávok" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Lejátszási lista" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Cím" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Előadó/Szerző" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Bitráta" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Zeneszerző" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Karmester" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Szerzői jog" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Kódolva" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Műfaj" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Címke" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Nyelv" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Utoljára módosítva" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Utoljára játszott" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Hossz" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime típus" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Hangulat" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Tulajdonos" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Mintavétel" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Sáv sorszáma" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Feltöltve" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Honlap" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Év" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Betöltés..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Összes" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Fájlok" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Lejátszási listák" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Okosblokkok" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web-adásfolyamok" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Ismeretlen típus:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Biztos benne, hogy törli a kijelölt elemet?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Feltöltés folyamatban..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Adatok lekérdezése a kiszolgálóról..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "Megtekintés" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Hibakód:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Hibaüzenet:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "A bemenetnek pozitív számnak kell lennie" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "A bemenetnek számnak kell lennie" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "A bemenetet ebben a fotmában kell megadni: éééé-hh-nn" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "A bemenetet ebben a formában kell megadni: óó:pp:mm.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Podcastom" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Ön jelenleg fájlokat tölt fel. %sHa másik ablakot nyit meg, akkor a feltöltési folyamat megszakad. %sBiztos benne, hogy elhagyja az oldalt?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Médiaépítő megnyitása" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 #, fuzzy msgid "please put in a time '00:00:00 (.0)'" msgstr "kérjük, tegye időbe '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "Érvényes időt kell megadni másodpercben. Pl.: 0.5" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "A böngészője nem támogatja az ilyen típusú fájlok lejátszását:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Dinamikus blokknak nincs előnézete" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Korlátozva:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Lejátszási lista mentve" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Lejátszási lista megkeverve" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Az Airtime bizonytalan a fájl állapotával kapcsolatban. Ez akkor történhet meg, ha a fájl egy nem elérhető távoli meghajtón van, vagy a fájl egy olyan könyvtárban van ami már nincs „megfigyelve”." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "%s hallgatóinak száma: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Emlékeztessen 1 hét múlva" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Soha ne emlékeztessen" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Igen, segítek az Airtime-nak" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "A képek formátuma jpg, jpeg, png, vagy gif kell legyen" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "A statikus okostábla elmenti a feltételt és azonnal létrehozza a blokk tartalmát. Ez lehetővé teszi a módosítását és megtekintését a Könyvtárban, mielőtt még hozzá lenne adva egy műsorhoz." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "A dinamikus okostábla csak elmenti a feltételeket. A blokk tartalma egy műsorhoz történő hozzáadása közben lesz létrehozva. Később a tartalmát sem megtekinteni, sem módosítani nem lehet a Könyvtárban." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Okosblokk megkeverve" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Okosblokk létrehozva és a feltételek mentve" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Okosblokk elmentve" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Feldolgozás..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Módosító választása" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "tartalmazza" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "nem tartalmazza" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "pontosan" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "nem" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "kezdődik" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "végződik" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "nagyobb, mint" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "kisebb, mint" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "tartománya" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Létrehozás" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Válasszon tárolómappát" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Válasszon figyelt mappát" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2519,2873 +1617,2312 @@ msgstr "" "Biztos benne, hogy meg akarja változtatni a tárolómappát?\n" "Ezzel eltávolítja a fájlokat a saját Airtime könyvtárából!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Médiamappák kezelése" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Biztos benne, hogy el akarja távolítani a figyelt mappát?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Ez az útvonal jelenleg nem elérhető." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Egyes adásfolyam típusokhoz további beállítások szükségesek. További részletek érhetőek el az %sAAC+ támogatás%s vagy az %sOpus támogatás%s engedélyezésével kapcsolatban." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Csatlakozva az adásfolyam kiszolgálóhoz" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Az adásfolyam ki van kapcsolva" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Információk lekérdezése a kiszolgálóról..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Nem lehet kapcsolódni az adásfolyam kiszolgálójához" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Az OGG adásfolyamok metadatainak engedélyezéséhez be kell jelölni ezt a lehetőséget (adásfolyam metadat a sáv címe, az előadó és a műsor neve amik az audió lejátszókban fognak megjelenni). A VLC-ben és az mplayerben egy komoly hiba problémát okoz a metadatokat tartalmazó OGG/VORBIS adatfolyamok lejátszásakor: ezek a lejátszók lekapcsolódnak az adásfolyamról minden szám végén. Ha a hallgatók az OGG adásfolyamot nem ezekkel a lejátszókkal hallgatják, akkor nyugodtan engedélyezni lehet ezt a beállítást." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Ha be van jelölve, a Mester/Műsorforrás automatikusan kikapcsol ha a forrás lekapcsol." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Ha be van jelölve, a Mester/Műsorforrás automatikusan bekapcsol ha a forrás csatlakozik." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Ha az Icecast kiszolgáló nem igényli a „forrás” felhasználónevét, ez a mező üresen maradhat." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Ha az élő adásfolyam kliense nem kér felhasználónevet, akkor ebben a mezőben „forrás”-t kell beállítani ." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "FIGYELEM: Ez újraindítja az adásfolyamot aminek következtében a felhasználók rövid kiesést tapasztalhatnak!" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Ez az Icecast/SHOUTcast hallgatói statisztikákhoz szükséges adminisztrátori felhasználónév és jelszó." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Figyelmeztetés: Nem lehet megváltoztatni a mező tartalmát, míg a jelenlegi műsor tart" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Nem volt találat" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Ez ugyanazt a biztonsági mintát követi: csak a műsorhoz hozzárendelt felhasználók csatlakozhatnak." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Adjon meg egy egyéni hitelesítést, amely csak ennél a műsornál működik." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "A műsor példány nem létezik többé!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Figyelem: Műsorokat nem lehet újrahivatkozni" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 #, fuzzy msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Az ismétlődő műsorok összekötésével, minden ütemezett médiai elem, az összes ismétlődő műsorban, ugyanazt a sorrendet kapja, mint a többi ismétlődő műsorban" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Az időzóna alapértelmezetten az állomás időzónájára van beállítva. A műsorok a naptárban a felhasználói beállításoknál, a Felületi Időzóna menüpontban megadott helyi idő szerint lesznek megjelenítve." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Műsor" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "A műsor üres" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1p" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5p" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10p" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15p" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30p" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60p" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Adatok lekérdezése a kiszolgálóról..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Ez a műsor nem tartalmaz ütemezett tartalmat." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Ez a műsor nincs teljesen feltöltve tartalommal." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Január" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Február" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Március" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Április" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Május" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Június" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Július" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Augusztus" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Szeptember" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Október" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "November" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "December" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Jan" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Feb" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Már" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Ápr" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Jún" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Júl" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Aug" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Sze" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Okt" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dec" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "Ma" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "Nap" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "Hét" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "Hónap" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Vasárnap" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Hétfő" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Kedd" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Szerda" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Csütörtök" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Péntek" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Szombat" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "V" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "H" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "K" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Sze" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Cs" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "P" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Szo" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Ha egy műsor hosszabb az ütemezett időnél, a következő műsor le fogja vágni a végét." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "A jelenlegi műsor megszakítása?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "A jelenlegi műsor rögzítésének félbeszakítása?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ok" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "A műsor tartalmai" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Az összes tartalom eltávolítása?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Törli a kiválasztott elemeket?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Kezdés" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Befejezés" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Időtartam" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "Kiszűrve" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "/" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "felvétel" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "A megadott időszakban nincsenek ütemezett műsorok." -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Felkeverés" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Lekeverés" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Felúsztatás" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Leúsztatás" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Üres műsor" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Rögzítés a vonalbemenetről" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Sáv előnézete" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Nem lehet ütemezni a műsoron kívül." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "1 elem áthelyezése" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "%s elem áthelyezése" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Mentés" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Mégse" + +#: application/controllers/LocaleController.php:304 #, fuzzy msgid "Fade Editor" msgstr "Úsztatási Szerkesztő" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 #, fuzzy msgid "Cue Editor" msgstr "Keverési Szerkesztő" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "A Web Audio API-t támogató böngészőkben rendelkezésre állnak a hullámformákat kezelő funkciók" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Az összes kijelölése" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Kijelölés törlése" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "Túlnyúló műsorok levágása" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "A kijelölt ütemezett elemek eltávolítása" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Ugrás a jelenleg játszott sávra" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "A jelenlegi műsor megszakítása" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "A médiatár megnyitása az elemek hozzáadásához vagy eltávolításához" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Tartalom hozzáadása / eltávolítása" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "használatban van" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Lemez" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Nézze meg" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Megnyitás" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Admin" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Programkezelő" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Vendég" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "A vendégek a következőket tehetik:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Az ütemezés megtekintése" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "A műsor tartalmának megtekintése" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "A DJ-k a következőket tehetik:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Hozzárendelt műsor tartalmának kezelése" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Médiafájlok hozzáadása" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Lejátszási listák, okosblokkok és web-adásfolyamok létrehozása" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Saját médiatár tartalmának kezelése" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Műsortartalom megtekintése és kezelése" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "A műsorok ütemzései" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "A teljes médiatár tartalmának kezelése" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Az Adminisztrátorok a következőket tehetik:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Beállítások kezelései" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "A felhasználók kezelése" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "A figyelt mappák kezelése" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Támogatási visszajelzés küldése" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "A rendszer állapot megtekitnése" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Hozzáférés lejátszási előzményekhez" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "A hallgatói statisztikák megtekintése" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Az oszlopok megjelenítése/elrejtése" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "{from} és {to} között" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "éééé-hh-nn" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "óó:pp:mm.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "V" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "H" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "K" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Sze" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Cs" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "P" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Szo" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Bezárás" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Óra" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Perc" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Kész" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Fájlok kiválasztása" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Adjon fájlokat a feltöltési sorhoz, majd kattintson az „Indítás” gombra." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Fájlok hozzáadása" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Feltöltés megszakítása" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Feltöltés indítása" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Fájlok hozzáadása" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Feltöltve %d/%d fájl" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 #, fuzzy msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Húzza a fájlokat ide." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Fájlkiterjesztési hiba." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Fájlméret hiba." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 #, fuzzy msgid "File count error." msgstr "Fájl számi hiba." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Inicializálási hiba." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "HTTP Hiba." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Biztonsági hiba." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Általános hiba." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "IO hiba." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Fájl: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d várakozó fájl" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Fájl: %f,méret: %s, legnagyobb fájlméret: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "A feltöltés URL-je rossz vagy nem létezik" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Hiba: A fájl túl nagy:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Hiba: Érvénytelen fájl kiterjesztés:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Alapértelmezés beállítása" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Bejegyzés létrehozása" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Előzmények szerkesztése" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Nincs műsor" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s sor%s másolva a vágólapra" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sNyomtatási előnézet%sKérjük, használja böngészője nyomtatási beállításait. Nyomja meg az Esc-t ha végzett." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "Új műsor" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "Új naplóbejegyzés" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "Következő" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "Közzététel megszüntetése" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "Szerző" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Leírás" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "Hivatkozás" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Engedélyezve" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Letiltva" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "Okosblokk" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "Adásban" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "Adásszünet" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "Kapcsolat nélkül" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "Nincs semmi ütemezve" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "Kérjük adja meg felhasználónevét és jelszavát." + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló beállításait és, hogy megfelelő-e a konfiguráció." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "A felhasználónév vagy email cím nem található." + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "Valamilyen probléma van a megadott felhasználónévvel vagy email címmel." + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Ön %s egy régebbi verzióját tekinti meg" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Dinamikus blokkokhoz nem lehet sávokat hozzáadni" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "A kiválasztott %s törléséhez nincs engedélye." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Csak sávokat lehet hozzáadni az okosblokkhoz." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Névtelen lejátszási lista" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Névtelen okosblokk" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Ismeretlen lejátszási lista" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Beállítások frissítve." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Adásfolyam beállítások frissítve." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "az útvonalat meg kell határozni" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Probléma lépett fel a Liquidsoap-al..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "A kérés módja nem elfogadott" + +#: application/controllers/ScheduleController.php:395 #, fuzzy, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "A műsor újraközvetítése %s -tól/-től %s a %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Kurzor kiválasztása" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Kurzor eltávolítása" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "a műsor nem található" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Rögzített fájl nem létezik" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "A rögzített fájl metaadatai" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Sávok ütemezése" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Műsor törlése" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "Műsor megszakítása" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "Példány szerkesztése:" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Műsor szerkesztése" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "Példány törlése:" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "Ennek a példánynak és minden utána következő példánynak a törlése" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Engedély megtagadva" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Ismétlődő műsorokat nem lehet megfogni és áthúzni" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Az elhangzott műsort nem lehet áthelyezni" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "A műsort nem lehet a múltba áthelyezni" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Nem fedhetik egymást a műsorok" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "A műsor törlésre került, mert a rögzített műsor nem létezik!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Az adás újbóli közvetítésére 1 órát kell várni." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Sáv" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Kezdési Idő" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Felhasználó sikeresen hozzáadva!" -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Befejezési idő" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Felhasználó sikeresen módosítva!" -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Lejátszva" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Beállítások sikeresen módosítva!" -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Névtelen adásfolyam" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Web-adásfolyam mentve." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Érvénytelen űrlap értékek." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Érvénytelen bevitt karakterek" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "A napot meg kell határoznia" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Az időt meg kell határoznia" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Az újraközvetítésre legalább 1 órát kell várni" + +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "Lejátszási lista automatikus ütemezése?" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Lejátszási lista kiválasztása" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "A feltételek megadása" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bitráta (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Mintavételi ráta (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "óra" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "perc" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "elem" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "Véletlenszerűen" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "Legújabb" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "Legrégebbi" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "Típus:" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinamikus" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statikus" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "Ismétlődő sávok engedélyezése:" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "Sávok rendezése:" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "Korlátozva:" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Lejátszási lista tartalmának létrehozása és a feltétel mentése" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Véletlenszerű lejátszási lista tartalom" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "A határérték nem lehet üres vagy kisebb, mint 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "A határérték nem lehet hosszabb, mint 24 óra" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Az érték csak egész szám lehet" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Maximum 500 elem állítható be" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Feltételt és módosítót kell választani" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "A „Hosszúság”-ot „00:00:00” formában kell megadni" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Az értéknek numerikusnak kell lennie" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Az értéknek kevesebbnek kell lennie, mint 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Az értéknek rövidebb kell lennie, mint %s karakter" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Az érték nem lehet üres" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Szám:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "Közzététel..." - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import mappa:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Figyelt Mappák:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Érvénytelen könyvtár" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Hivatkozás:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Ismétlés típusa:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "hetente" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "minden második héten" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "minden harmadik héten" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "minden negyedik héten" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "havonta" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Napok kiválasztása:" - -#: legacy/application/forms/AddShowRepeats.php:47 -#, fuzzy -msgid "Repeat By:" -msgstr "Által Ismételt:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "a hónap napja" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "a hét napja" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Befejezés dátuma:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nincs vége?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "A befejezés dátumának a kezdés dátuma után kell lennie" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Kérjük válasszon egy ismétlési napot" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Kötelező értéket megadni, nem lehet üres" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' nem illeszkedik „ÓÓ:pp” formátumra" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "Kezdési Idő:" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "A jövőben:" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "Befejezési idő:" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Időzóna:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Ismétlések?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Műsort nem lehet a múltban létrehozni" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "A befejezési dátum és időpont nem lehet a múltban" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Időtartam nem lehet <0p" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Időtartam nem lehet 0ó 0p" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Időtartam nem lehet nagyobb mint 24 óra" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Felhasználónév:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Jelszó:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Jelszóellenőrzés:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Vezetéknév:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Keresztnév:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobiltelefon:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Felhasználótípus:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "A bejelentkezési név nem egyedi." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "%s hitelesítés használata:" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Egyéni hitelesítés használata:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Egyéni felhasználónév" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Egyéni jelszó" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "Hoszt:" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "Port:" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "Csatolási pont:" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "A felhasználónév mező nem lehet üres." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "A jelszó mező nem lehet üres." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Állomás nyelve" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Felvétel a vonalbemenetről?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Állomás időzóna" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Újraközvetítés?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Hírfolyam adatvédelem" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "napok" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "Nyilvános" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Hivatkozás:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "Privát" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Ismétlés típusa:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Kezdés Ideje:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "hetente" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Érvénytelen bevitt karakterek" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "minden második héten" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Felhasználók keresése:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "minden harmadik héten" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ-k:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "minden negyedik héten" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Szűrés műsor szerint" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "havonta" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Összes műsorom:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Napok kiválasztása:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Műsoraim" +#: application/forms/AddShowRepeats.php:46 +#, fuzzy +msgid "Repeat By:" +msgstr "Által Ismételt:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "a hónap napja" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "a hét napja" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Befejezés dátuma:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Nincs vége?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "A befejezés dátumának a kezdés dátuma után kell lennie" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Kérjük válasszon egy ismétlési napot" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Háttérszín:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Szövegszín:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "Jelenlegi logó:" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "Logó mutatása:" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "Logó előnézete:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "A napot meg kell határoznia" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Név:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Az időt meg kell határoznia" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Az újraközvetítésre legalább 1 órát kell várni" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Cím nélküli műsor" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Műfaj:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Leírás:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "Példány leírása:" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' nem illeszkedik „ÓÓ:pp” formátumra" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Kezdési Idő:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "A jövőben:" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "Befejezési idő:" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Időtartam:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Időzóna:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Ismétlések?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Műsort nem lehet a múltban létrehozni" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "A befejezési dátum és időpont nem lehet a múltban" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Időtartam nem lehet <0p" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Időtartam nem lehet 0ó 0p" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Időtartam nem lehet nagyobb mint 24 óra" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Nem fedhetik egymást a műsorok" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Felhasználók keresése:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ-k:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Felhasználónév:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Jelszó:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Jelszóellenőrzés:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Vezetéknév:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Keresztnév:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobiltelefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Felhasználótípus:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "A bejelentkezési név nem egyedi." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Az összes sáv törlése a könyvtárból" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Kezdés Ideje:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Cím:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Létrehozó:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Év:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Címke:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Zeneszerző:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Karmester:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Hangulat:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Szerzői jog:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Szám:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Honlap:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Nyelv:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "Közzététel..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Kezdési Idő" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Befejezési idő" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Felület időzónája:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Állomásnév" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "Állomás leírás" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Állomás logó:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 #, fuzzy msgid "Default Crossfade Duration (s):" msgstr "Alapértelmezett Áttünési Időtartam (mp):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "Idő megadása másodpercben (pl.: 0.5)" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 #, fuzzy msgid "Default Fade In (s):" msgstr "Alapértelmezett Felúsztatás (mp)" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 #, fuzzy msgid "Default Fade Out (s):" msgstr "Alapértelmezett Leúsztatás (mp)" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Podcast album felülírása" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "Public LibreTime API" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Kötelező a beágyazható ütemezés felületi elemhez." -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára." -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "Engedélyezett CORS URL-ek" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "Azok a távoli URL-ek amik böngészőből elérhetik ezt a LibreTime példányt. Soronként egy URL-t kell megadni." -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Alapértelmezett nyelv" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Állomás időzóna" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "A hét kezdőnapja" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "Bejelentkezési gomb megjelenítése a Rádióoldalon?" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Felvétel a vonalbemenetről?" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Újraközvetítés?" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Email" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "A jelszó visszaállítása" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "Automatikus kikapcsolás:" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "Automatikus bekapcsolás:" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "Mester-forrás hoszt:" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "Mester-forrás port:" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Csak számok adhatók meg." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "Mester-forrás csatolási pont:" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "Műsor-forrás hoszt:" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "Műsor-forrás port:" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "Műsor-forrás csatolási pont:" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Bejelentkezés" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Jelszó" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Új jelszó megerősítése" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "A megadott jelszavak nem egyeznek meg." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Az összes sáv törlése a könyvtárból" +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Email" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Felhasználónév" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "A jelszó visszaállítása" -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Vissza" -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "napok" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Engedélyezett:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Mobil:" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Adásfolyam típusa:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Szolgáltatás típusa:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Csatornák:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Monó" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Sztereó" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Kiszolgáló" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Csatolási pont" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Adminisztrátor felhasználó" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Adminisztrátor jelszó" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "A kiszolgáló nem lehet üres." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "A port nem lehet üres." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "A csatolási pont nem lehet üres Icecast szerver esetében." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Felület időzónája:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Most játszott" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "Adásfolyam kiválasztása:" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "A legmegfelelőbb adásfolyam automatikus felismerése." -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "Egy adásfolyam kiválasztása:" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "- Mobilbarát" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "- A lejátszó nem támogatja az Opus adásfolyamokat." -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "Beágyazható kód:" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába." -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Metadata beküldése saját TuneIn állomásba?" +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "Előnézet" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Állomás azonosító:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Hírfolyam adatvédelem" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Partnerkulcs:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Nyilvános" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Partnerazonosító:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Privát" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "Állomás nyelve" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "Szűrés műsor szerint" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' nem illeszkedik '%format%' dátumformátumra" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Összes műsorom:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' rövidebb, mint %min% karakter" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "Műsoraim" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'% value%' több mint, %max% karakter hosszú" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "A feltételek megadása" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' értéknek '%min%' és '%max%' között kell lennie" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bitráta (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "A jelszavak nem egyeznek meg" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Mintavételi ráta (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "óra" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "perc" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "elem" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Véletlenszerűen" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Legújabb" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Legrégebbi" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Típus:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamikus" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statikus" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "Ismétlődő sávok engedélyezése:" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "Sávok rendezése:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Korlátozva:" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Lejátszási lista tartalmának létrehozása és a feltétel mentése" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Véletlenszerű lejátszási lista tartalom" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Véletlenszerű" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "A határérték nem lehet üres vagy kisebb, mint 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "A határérték nem lehet hosszabb, mint 24 óra" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Az érték csak egész szám lehet" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "Maximum 500 elem állítható be" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Feltételt és módosítót kell választani" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "A „Hosszúság”-ot „00:00:00” formában kell megadni" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Az értéknek numerikusnak kell lennie" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Az értéknek kevesebbnek kell lennie, mint 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Az értéknek rövidebb kell lennie, mint %s karakter" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Az érték nem lehet üres" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "Hardver audio kimenet:" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "Kimenet típusa" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "ALSA" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "AO" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "OSS" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "Portaudio" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "Pulseaudio" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "Jack" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis metaadat" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Adásfolyam címke:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Előadó - Cím" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Műsor - Előadó - Cím" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Állomásnév - Műsornév" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Adásszünet - Metaadat" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 #, fuzzy msgid "Enable Replay Gain" msgstr "Replay Gain Engedélyezése" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 #, fuzzy msgid "Replay Gain Modifier" msgstr "Replay Gain Módosító" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "Adásfolyam szerver:" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "Alapértelmezett adásfolyam:" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "Egyéni / Más féltől származó adásfolyam" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s érvénytelen dátum" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s érvénytelen időpont" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s." - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s." - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget." - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" -"A hivatkozott műsorokat elindításuk előtt fel kell tölteni sávokkal. A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort, és ütemezni kell egy nem hivatkozott műsort.\n" -"%sNem hivatkozott műsor létrehozása most%s." - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "A közvetítés elkezdéséhez kattintani kell a jelenlegi műsoron és kiválasztani a „Sávok ütemezése” lehetőséget" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "Úgy tűnik a jelenlegi műsorhoz még kellenek sávok. %sSávok hozzáadása a műsorhoz most%s." - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Kattintson a következő műsorra és válassza a „Sávok ütemezése” lehetőséget" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Úgy tűnik az következő műsor üres. %sSávok hozzáadása a műsorhoz most%s." - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "English" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "Afar" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "Abkhazian" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "Afrikaans" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "Amharic" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "Arabic" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "Assamese" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "Aymara" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "Bashkir" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "Belarusian" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "Bulgarian" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "Bihari" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "Bislama" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "Bengali/Bangla" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "Tibetan" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "Breton" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "Catalan" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "Corsican" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "Czech" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "Alapértelmezett adásfolyam:" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Engedélyezett:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "Mobil:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Adásfolyam típusa:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bitráta:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Szolgáltatás típusa:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Csatornák:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Monó" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Sztereó" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Kiszolgáló" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "Welsh" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "Danish" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "German" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Név" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "Bhutani" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Csatolási pont" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "Greek" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Adminisztrátor felhasználó" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "Esperanto" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Adminisztrátor jelszó" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "Spanish" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "A kiszolgáló nem lehet üres." -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "Estonian" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "A port nem lehet üres." -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "Basque" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "A csatolási pont nem lehet üres Icecast szerver esetében." -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "Persian" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Metadata beküldése saját TuneIn állomásba?" -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "Finnish" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Állomás azonosító:" -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "Fiji" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Partnerkulcs:" -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "Faeroese" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Partnerazonosító:" -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "French" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni." -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "Frisian" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Import mappa:" -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "Irish" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Figyelt Mappák:" -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "Scots/Gaelic" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Érvénytelen könyvtár" -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "Galician" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Kötelező értéket megadni, nem lehet üres" -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "Guarani" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)" -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "Gujarati" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' nem illeszkedik '%format%' dátumformátumra" -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "Hausa" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' rövidebb, mint %min% karakter" -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "Hindi" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'% value%' több mint, %max% karakter hosszú" -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "Croatian" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' értéknek '%min%' és '%max%' között kell lennie" -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "Magyar" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "A jelszavak nem egyeznek meg" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "Armenian" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "Interlingua" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "Interlingue" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "Inupiak" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "Indonesian" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "Icelandic" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "Italian" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "Hebrew" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "Japanese" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "Yiddish" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "Javanese" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "Georgian" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "Kazakh" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "Greenlandic" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "Cambodian" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "Kannada" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "Korean" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "Kashmiri" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "Kurdish" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "Kirghiz" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "Latin" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "Lingala" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "Laothian" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "Lithuanian" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "Latvian/Lettish" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "Malagasy" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "Maori" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "Macedonian" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "Malayalam" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "Mongolian" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "Moldavian" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "Marathi" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "Malay" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "Maltese" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "Burmese" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "Nauru" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "Nepali" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "Dutch" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "Norwegian" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "Occitan" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "(Afan)/Oromoor/Oriya" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "Punjabi" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "Polish" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "Pashto/Pushto" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "Portuguese" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "Quechua" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "Rhaeto-Romance" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "Kirundi" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "Romanian" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "Russian" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "Kinyarwanda" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "Sanskrit" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "Sindhi" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "Sangro" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "Serbo-Croatian" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "Singhalese" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "Slovak" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "Slovenian" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "Samoan" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "Shona" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "Somali" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "Albanian" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "Serbian" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "Siswati" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "Sesotho" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "Sundanese" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "Swedish" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "Swahili" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "Tamil" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "Tegulu" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "Tajik" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "Thai" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "Tigrinya" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "Turkmen" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "Tagalog" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "Setswana" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "Tonga" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "Turkish" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "Tsonga" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "Tatar" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "Twi" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "Ukrainian" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "Urdu" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "Uzbek" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "Vietnamese" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "Volapuk" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "Wolof" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "Xhosa" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "Yoruba" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "Chinese" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "Zulu" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Állomás alapértelmezések használata" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -#, fuzzy -msgid "Cue in and cue out are null." -msgstr "A fel- és a lekeverés értékei nullák." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -#, fuzzy -msgid "Can't set cue in to be larger than cue out." -msgstr "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -#, fuzzy -msgid "Can't set cue out to be greater than file length." -msgstr "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -#, fuzzy -msgid "Can't set cue out to be smaller than cue in." -msgstr "Nem lehet a lekeverés rövidebb, mint a felkeverés." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "A hosszúság értékének nagyobb kell lennie, mint 0 perc" - -#: legacy/application/models/Webstream.php:171 -#, fuzzy -msgid "Length should be of form \"00h 00m\"" -msgstr "A hosszúság formája \"00ó 00p\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "Az URL-t „http://domain” formában kell megadni" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "Az URL nem lehet 512 karakternél hosszabb" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Nem található MIME típus a web-adásfolyamhoz." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "A web-adásfolyam neve nem lehet üres" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Nem sikerült feldolgozni az XSPF lejátszási listát" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Nem sikerült feldolgozni a PLS lejátszási listát" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Nem sikerült feldolgozni az M3U lejátszási listát" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Ismeretlen típusú adásfolyam: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, fuzzy, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Úrjaközvetítés %s -tól/-től %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Ország kiválasztása" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Nem tud áthelyezni elemeket a kapcsolódó műsorokból" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "A megtekintett ütemterv elavult! (ütem eltérés)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "A megtekintett ütemterv elavult! (példány eltérés)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "A megtekintett ütemterv időpontja elavult!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Nincs jogosultsága %s műsor ütemezéséhez." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Nem adhat hozzá fájlokat a rögzített műsorokhoz." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "A műsor %s véget ért és nem lehet ütemezni." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "%s műsor már korábban frissítve lett!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "A hivatkozott műsorok tartalma nem módosítható adás közben!" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz." - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Egy kiválasztott fájl nem létezik!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s már figyelve van." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s beágyazott figyelt könyvtárat tartalmaz: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s be van ágyazva egy létező figyelt könyvtárba: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s nem érvényes könyvtár." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s nem szerepel a figyeltek listáján." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "Nincs" - -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5396,7 +3933,7 @@ msgstr "" "\n" "A hivatkozásra kattintva lehet visszaállítani a jelszót:" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5407,7 +3944,7 @@ msgstr "" "\n" "Probléma esetén itt lehet támogatást kérni: %s" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5420,20 +3957,142 @@ msgstr "" "Köszönettel,\n" "%s Csapat" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s jelszó visszaállítása" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +#, fuzzy +msgid "Cue in and cue out are null." +msgstr "A fel- és a lekeverés értékei nullák." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +#, fuzzy +msgid "Can't set cue out to be greater than file length." +msgstr "Nem lehet beállítani, mert a lekeverési idő nem lehet nagyobb a fájl hosszánál." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +#, fuzzy +msgid "Can't set cue in to be larger than cue out." +msgstr "Nem lehet beállítani, hogy a felkeverés hosszabb legyen, mint a lekeverés." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +#, fuzzy +msgid "Can't set cue out to be smaller than cue in." +msgstr "Nem lehet a lekeverés rövidebb, mint a felkeverés." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "Feltöltési idő" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "Nincs" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s már figyelve van." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s beágyazott figyelt könyvtárat tartalmaz: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s be van ágyazva egy létező figyelt könyvtárba: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s nem érvényes könyvtár." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s már be van állítva, mint a jelenlegi tároló könyvtár, vagy szerepel a figyelt mappák listájában." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s nem szerepel a figyeltek listáján." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "Működteti a %s" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Ország kiválasztása" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "élő adásfolyam" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Nem tud áthelyezni elemeket a kapcsolódó műsorokból" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "A megtekintett ütemterv elavult! (ütem eltérés)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "A megtekintett ütemterv elavult! (példány eltérés)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "A megtekintett ütemterv időpontja elavult!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Nincs jogosultsága %s műsor ütemezéséhez." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Nem adhat hozzá fájlokat a rögzített műsorokhoz." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "A műsor %s véget ért és nem lehet ütemezni." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "%s műsor már korábban frissítve lett!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "A hivatkozott műsorok tartalma nem módosítható adás közben!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Nem lehet ütemezni olyan lejátszási listát amely hiányzó fájlokat tartalmaz." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Egy kiválasztott fájl nem létezik!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "A műsorok maximum 24 óra hosszúságúak lehetnek." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5441,163 +4100,287 @@ msgstr "" "Átfedő műsorokat nem lehet ütemezni.\n" "Megjegyzés: Egy ismétlődő műsor átméretezése hatással lesz minden ismétlésére." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "Feltöltési idő" +#: application/models/ShowBuilder.php:210 +#, fuzzy, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Úrjaközvetítés %s -tól/-től %s" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "Rádióoldal" +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "A hosszúság értékének nagyobb kell lennie, mint 0 perc" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Naptár" +#: application/models/Webstream.php:167 +#, fuzzy +msgid "Length should be of form \"00h 00m\"" +msgstr "A hosszúság formája \"00ó 00p\"" -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "Felületi elemek" +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "Az URL-t „http://domain” formában kell megadni" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "Beállítások" +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "Az URL nem lehet 512 karakternél hosszabb" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Felhasználók" +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Nem található MIME típus a web-adásfolyamhoz." -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "A web-adásfolyam neve nem lehet üres" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Nem sikerült feldolgozni az XSPF lejátszási listát" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Nem sikerült feldolgozni a PLS lejátszási listát" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Nem sikerült feldolgozni az M3U lejátszási listát" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Érvénytelen web-adásfolyam - Úgy néz ki, hogy ez egy fájlletöltés." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Ismeretlen típusú adásfolyam: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Rögzített fájl nem létezik" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "A rögzített fájl metaadatai" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Sávok ütemezése" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "Műsor törlése" + +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "Műsor megszakítása" + +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "Példány szerkesztése:" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Műsor szerkesztése" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "Példány törlése:" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "Ennek a példánynak és minden utána következő példánynak a törlése" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Engedély megtagadva" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Ismétlődő műsorokat nem lehet megfogni és áthúzni" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Az elhangzott műsort nem lehet áthelyezni" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "A műsort nem lehet a múltba áthelyezni" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "A műsor törlésre került, mert a rögzített műsor nem létezik!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Az adás újbóli közvetítésére 1 órát kell várni." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Sáv" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Lejátszva" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Adásfolyamok" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Web-adásfolyamok" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "Elemzések" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Naplózási sablonok" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Hallgatói statisztikák" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Első lépések" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Felhasználói kézikönyv" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "Újdonságok" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "Nem lehet kapcsolódni a RabbitMQ kiszolgálóhoz! Ellenőrizni kell, hogy a kiszolgáló fut és az azonosítási adatok megfelelőek." -#~ msgid "Facebook" -#~ msgstr "Facebook" +#~ msgid " to " +#~ msgstr "-ig" -#~ msgid "FAQ" -#~ msgstr "GYIK" +#, fuzzy, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s-ot %3$s mellett terjesztik" -#~ msgid "View track" -#~ msgstr "Sáv megtekintése" +#, fuzzy, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, a nyitott rádiós szoftver, az ütemezett és távoli állomás menedzsment." -#~ msgid "Update track" -#~ msgstr "Sáv frissítése" +#, php-format +#~ msgid "%s Version" +#~ msgstr "%s verzió" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "A kívánt blokkhosszúság nem érhető el ha az Airtime nem talál elég egyedi, a feltételnek megfelelő sávot. Ha ez engedélyezett, egy sávot többször is hozzá lehet adni az okosblokkhoz." +#, fuzzy +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Annak érdekében, hogy hírdetni tudja az állomását, a 'Támogatási Visszajelzés Küldését' engedélyeznie kell.)" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "A további részletekért, kérjük, olvassa el az %sAirtime Kézikönyvét%s" +#~ msgid "(Required)" +#~ msgstr "(Kötelező)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "A Programvezetők a következőket tehetik:" +#~ msgid "(Your radio station website)" +#~ msgstr "(A rádióállomás honlapja)" -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Üdvözli az új Airtime Pro!" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(csupán ellenőrzés céljából, nem kerül közzétételre)" -#~ msgid "Support setting updated." -#~ msgstr "Támogatási beállítások frissítve." +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(óó:pp:mm.t)" -#~ msgid "Support Feedback" -#~ msgstr "Támogatási visszajelzés" +#~ msgid "(ss.t)" +#~ msgstr "(mm.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Gépelje be a képen látható karaktereket." +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Egy jelszóvisszaállító hivatkozást küldtünk a megadott email címre. Az email tartalmazza a jelszó visszaállításához szükséges lépéseket. Ha nem érkezik meg az email, érdemes megnézni a levélszemét mappában." -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Egy sávlista lesz létrehozva amikor ez az okosblokk ütemezésre kerül egy műsorban." -#~ msgid "Station Web Site:" -#~ msgstr "Az állomás honlapja:" +#~ msgid "About" +#~ msgstr "Rólunk" -#~ msgid "Country:" -#~ msgstr "Ország:" +#~ msgid "Access Denied!" +#~ msgstr "Hozzáférés megtagadva!" -#~ msgid "City:" -#~ msgstr "Város:" +#~ msgid "Add New Field" +#~ msgstr "Új mező hozzáadása" -#~ msgid "Station Description:" -#~ msgstr "Állomás leírása:" +#~ msgid "Add more elements" +#~ msgstr "Adjon hozzá több elemet" -#~ msgid "Promote my station on %s" -#~ msgstr "Az állomásom közzététele itt: %s" +#~ msgid "Add this show" +#~ msgstr "Adja hozzá ezt a műsort" + +#~ msgid "Add tracks to your show" +#~ msgstr "Sávok hozzáadása a műsorhoz" + +#~ msgid "Additional Options" +#~ msgstr "További lehetőségek" + +#~ msgid "Advanced Search Options" +#~ msgstr "Speciális keresési beállítások" + +#~ msgid "All rights are reserved" +#~ msgstr "Minden jog fenntartva" + +#~ msgid "An error has occurred." +#~ msgstr "Hiba történt." + +#~ msgid "Audio Track" +#~ msgstr "Audió sáv" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Automatikus lejátszási lista" + +#~ msgid "Bad Request!" +#~ msgstr "Rossz kérés!" #, fuzzy #~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." #~ msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s." -#~ msgid "You have to agree to privacy policy." -#~ msgstr "El kell fogadnia az adatvédelmi irányelveket." +#~ msgid "Category" +#~ msgstr "Kategória" + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "A forrásokat bejelölve, és a lenti „Közzététel”-re kattintva lehet ezt a sávot közzétenni a megadott forrásokban." + +#~ msgid "Choose Days:" +#~ msgstr "Válasszon napokat:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Műsorpéldány kiválasztása" + +#~ msgid "Choose folder" +#~ msgstr "Válasszon mappát" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Ennek a lejátszási listának a létrehozásához feltételt kell választani, majd a „Létrehozás” gombra kattintani." + +#~ msgid "City:" +#~ msgstr "Város:" + +#~ msgid "Clear" +#~ msgstr "Törlés" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "A „Naptár”-ra kell kattintani a bal oldali sávon. A megjelenő felületen a „+ Új műsor” gombra kell kattintani és kitölteni a kötelező mezőket." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "A naptárban a műsorra kattintva a „Műsor ütemezése” lehetőséget kell választani. A felugró ablakban sávokat lehet húzni a műsorba." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "A bal sarokban található „Feltöltés” gombbal lehet sávokat feltölteni a saját könyvtárba." #, fuzzy -#~ msgid "Default License:" -#~ msgstr "Alapértelmezett Liszensz:" +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Jelöld be a mezőt az állomásod közzétételéhez a %s-on." -#~ msgid "All rights are reserved" -#~ msgstr "Minden jog fenntartva" +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "A kapcsolódó műsorok tartalmait bármelyik adás előtt vagy után kell ütemezni" -#, fuzzy -#~ msgid "The work is in the public domain" -#~ msgstr "A munka a nyilvános felületen folyik" +#~ msgid "Country:" +#~ msgstr "Ország:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Fájl összesítő sablon létrehozása" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Naplózási sablon létrehozása" #, fuzzy #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Tulajdonjog" -#, fuzzy -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog" - #, fuzzy #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Nem Feldolgozható Tulajdonjog" #, fuzzy -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog" #, fuzzy #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5607,61 +4390,651 @@ msgstr "Nem lehet kapcsolódni a RabbitMQ kiszolgálóhoz! Ellenőrizni kell, ho #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Nem Kereskedelmi Megosztó Tulajdonjog" +#, fuzzy +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog" + +#, fuzzy +#~ msgid "Cue In: " +#~ msgstr "Felkeverés:" + +#, fuzzy +#~ msgid "Cue Out: " +#~ msgstr "Lekeverés:" + +#~ msgid "Current Import Folder:" +#~ msgstr "Jelenlegi import mappa:" + +#~ msgid "Cursor" +#~ msgstr "Kurzor" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ " copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "A lejátszó testre szabható az alábbi lehetőségek beállításával. Ha kész, a lenti beágyazható kódot le lehet másolni, és beilleszteni a webhely HTML-kódjába." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "A DJ-k ezeket a beállításokat használhatják a műsorsugárzó szoftverükben, hogy bármikor élőben sugározhassanak a hozzájuk rendelt műsorokban." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "A DJ-k ezeket a beállításokat használhatják arra, hogy kompatibilis szoftverrel csatlakozzanak, és élőben sugározzanak a műsor alatt. DJ-t lentebb lehet hozzárendelni." + +#~ msgid "Dangerous Options" +#~ msgstr "Veszélyes beállítások" + +#~ msgid "Dashboard" +#~ msgstr "Műszerfal" + +#~ msgid "Default Length:" +#~ msgstr "Alapértelmezett hossz:" + +#, fuzzy +#~ msgid "Default License:" +#~ msgstr "Alapértelmezett Liszensz:" + #~ msgid "Default Sharing Type:" #~ msgstr "Alapértelmezett megosztástípus:" -#~ msgid "Register Airtime" -#~ msgstr "Airtime regisztráció" +#~ msgid "Disk Space" +#~ msgstr "Lemezterület" + +#~ msgid "Download latest episodes:" +#~ msgstr "Legutolsó epizódok automatikus letöltése?" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "A könyvtárból ide húzott sávok hozzá lesznek adva a lejátszási listához" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Sávokat ejtéssel vagy a „Böngészés” gombra kattintással lehet hozzáadni" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dinamikus okosblokk" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dinamikus okostábla feltétel:" + +#~ msgid "Edit Metadata..." +#~ msgstr "Metaadat szerkesztése..." + +#~ msgid "Editing " +#~ msgstr "Szerkesztés " + +#~ msgid "Email Sent!" +#~ msgstr "Email elküldve!" + +#~ msgid "Empty playlist content" +#~ msgstr "Üres lejátszási lista tartalom" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dinamikus Blokk kibővítése" + +#~ msgid "Expand Static Block" +#~ msgstr "Statikus Blokk kibővítése" + +#~ msgid "Explicit" +#~ msgstr "Szókimondó" + +#~ msgid "FAQ" +#~ msgstr "GYIK" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Facebook rádiólejátszó" #, fuzzy -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Jelöld be a mezőt az állomásod közzétételéhez a %s-on." - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(csupán ellenőrzés céljából, nem kerül közzétételre)" - -#~ msgid "Show me what I am sending " -#~ msgstr "Mutasd meg, hogy mit küldök" - -#~ msgid "Terms and Conditions" -#~ msgstr "Felhasználási feltételek" - -#~ msgid "files meet the criteria" -#~ msgstr "feltételeknek megfelelő fájl" - -#~ msgid "file meets the criteria" -#~ msgstr "feltételeknek megfelelő fájl" +#~ msgid "Fade in: " +#~ msgstr "Felúsztatás:" #, fuzzy -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Annak érdekében, hogy hírdetni tudja az állomását, a 'Támogatási Visszajelzés Küldését' engedélyeznie kell.)" +#~ msgid "Fade in: " +#~ msgstr "Felkeverés:" -#~ msgid "Viewing " -#~ msgstr "Megtekintés " +#, fuzzy +#~ msgid "Fade out: " +#~ msgstr "Lekeverés:" + +#~ msgid "Failed" +#~ msgstr "Sikertelen" + +#~ msgid "File Path:" +#~ msgstr "Fájl elérési útvonala:" + +#~ msgid "File Summary" +#~ msgstr "Fájl összesítő" + +#~ msgid "File Summary Templates" +#~ msgstr "Fájl összesítő sablonok" + +#~ msgid "File import in progress..." +#~ msgstr "Fájl importálása folyamatban..." + +#~ msgid "Filter History" +#~ msgstr "Előzmények szűrése" + +#, fuzzy +#~ msgid "Find" +#~ msgstr "Találat" + +#~ msgid "Find Shows" +#~ msgstr "Műsorok keresése" + +#~ msgid "First Name" +#~ msgstr "Vezetéknév" + +#, php-format +#~ msgid "" +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "" +#~ "A metaadat mezők jelentéséről részletes információk találhatóak az %sRSS specifikációban%s\n" +#~ "vagy az %sApple podcast dokumentációban%s." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "További segítségért, olvassa el a %shasználati útmutatót%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "A további részletekért, kérjük, olvassa el az %sAirtime Kézikönyvét%s" + +#~ msgid "Forgot your password?" +#~ msgstr "Elfelejtett jelszó?" + +#~ msgid "General Fields" +#~ msgstr "Általános mezők" + +#~ msgid "Global" +#~ msgstr "Globális" + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Így lehet elkezdeni a %s használatát a műsorsugárzás automatizálásához:" + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc szám:" + +#~ msgid "Keywords" +#~ msgstr "Kulcsszavak" + +#~ msgid "Last Name" +#~ msgstr "Keresztnév" + +#~ msgid "Length:" +#~ msgstr "Hossz:" + +#~ msgid "Limit to " +#~ msgstr "Korlátozva" + +#~ msgid "Listen" +#~ msgstr "Hallgatás" + +#~ msgid "Listeners" +#~ msgstr "Hallgatók" + +#~ msgid "Live Broadcasting" +#~ msgstr "Élő közvetítés" + +#~ msgid "Live Stream Input" +#~ msgstr "Élő adásfolyam bemenet" + +#~ msgid "Live stream" +#~ msgstr "Élő adásfolyam" + +#~ msgid "Log Sheet" +#~ msgstr "Napló" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Naplózási sablonok" + +#~ msgid "Logout" +#~ msgstr "Kijelentkezés" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Úgy néz ki a keresett oldal nem létezik!" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Úgy tűnik erre a napra nincsenek műsorok ütemezve." + +#~ msgid "Manage Users" +#~ msgstr "Felhasználók kezelése" + +#~ msgid "Master Source" +#~ msgstr "Mester-forrás" #~ msgid "Monthly Listener Bandwidth Usage" #~ msgstr "Havi hallgatók sávszélesség használata" -#~ msgid "Your trial expires in" -#~ msgstr "A kipróbálási időszak lejár" +#~ msgid "New Criteria" +#~ msgstr "Új feltétel" + +#~ msgid "New File Summary Template" +#~ msgstr "Új fájl összesítő sablon" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Új naplózási sablon" + +#~ msgid "New Modifier" +#~ msgstr "Új módosító" + +#~ msgid "New User" +#~ msgstr "Új felhasználó" + +#~ msgid "New password" +#~ msgstr "Új jelszó" + +#~ msgid "Next:" +#~ msgstr "Következő:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nincsenek fájl összesítő sablonok" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Nincsenek naplózási sablonok" + +#~ msgid "No open playlist" +#~ msgstr "Nincs megnyitott lejátszási lista" + +#~ msgid "No smart block currently open" +#~ msgstr "Jelenleg nincs okosblokk nyitva" + +#~ msgid "No webstream" +#~ msgstr "Nincs web-adásfolyam" + +#~ msgid "Now you're good to go!" +#~ msgstr "Mehet is az adás!" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ADÁSBAN" + +#~ msgid "Oops!" +#~ msgstr "Hoppá!" + +#~ msgid "Original Length:" +#~ msgstr "Eredeti hossz:" + +#~ msgid "Output Streams" +#~ msgstr "Kimeneti adásfolyamok" + +#~ msgid "Override" +#~ msgstr "Felülírás" #~ msgid "Override album name with podcast name during ingest." #~ msgstr "Album nevének felülírása a podcast nevével a beküldés során." -#~ msgid "Record & Rebroadcast" -#~ msgstr "Felvétel és újrasugárzás" +#~ msgid "Page not found!" +#~ msgstr "Az oldal nem található!" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ez a verzió hamarosan elavul." +#~ msgid "Password Reset" +#~ msgstr "Jelszó visszaállítás" -#~ msgid "This version is no longer supported." -#~ msgstr "Ez a verzió már nem támogatott." +#~ msgid "Pending" +#~ msgstr "Várakozó" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Lejátszás" + +#~ msgid "Playlist Contents: " +#~ msgstr "Lejátszási lista tartalmak:" + +#, fuzzy +#~ msgid "Playlist crossfade" +#~ msgstr "Lejátszási lista átúsztatása" + +#~ msgid "Playout History Templates" +#~ msgstr "Lejátszási történet sablonok" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Kérjük adja meg és erősítse meg új jelszavát az alábbi mezőkben." #~ msgid "Please upgrade to " #~ msgstr "Kérjük, frissítsen" +#~ msgid "Podcast Name: " +#~ msgstr "Podcast neve:" + +#~ msgid "Podcast URL: " +#~ msgstr "Podcast URL: " + +#~ msgid "Podcasts" +#~ msgstr "Podcastok" + +#~ msgid "Previous:" +#~ msgstr "Előző:" + +#~ msgid "Privacy Settings" +#~ msgstr "Adatvédelmi beállítások" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "A Programvezetők a következőket tehetik:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Az állomásom közzététele itt: %s" + +#~ msgid "Publish to:" +#~ msgstr "Közzététel itt:" + +#~ msgid "Published on:" +#~ msgstr "Közzétéve itt:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "A közzétett sávokat lentebb lehet eltávolítani vagy frissíteni." + +#~ msgid "Publishing" +#~ msgstr "Közzététel" + +#~ msgid "RESET" +#~ msgstr "VISSZAÁLLÍTÁS" + +#~ msgid "RSS Feed URL:" +#~ msgstr "RSS hírcsatorna URL-je:" + +#~ msgid "Recent Uploads" +#~ msgstr "Korábbi feltöltések" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Felvétel és újrasugárzás" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime regisztráció" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Minden tartalom eltávolítása ebből az okosblokkból" + +#~ msgid "Remove watched directory" +#~ msgstr "A figyelt mappa eltávolítása" + +#~ msgid "Repeat Days:" +#~ msgstr "Ismétlések napjai:" + +#, fuzzy, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "A figyelt mappa újraellenőrzése (Ez akkor hasznos, ha a hálózati csatolás nincs szinkronban az %s-al)" + +#~ msgid "Sample Rate:" +#~ msgstr "Mintavételi ráta:" + +#~ msgid "Save playlist" +#~ msgstr "Lejátszási lista mentése" + +#~ msgid "Save podcast" +#~ msgstr "Podcast mentése" + +#~ msgid "Save station podcast" +#~ msgstr "Állomás-podcast mentése" + +#~ msgid "Schedule a show" +#~ msgstr "Egy műsor ütemezése" + +#~ msgid "Scheduled Shows" +#~ msgstr "Ütemezett műsorok" + +#~ msgid "Search Criteria:" +#~ msgstr "Keresési feltétel" + +#~ msgid "Select stream:" +#~ msgstr "Adásfolyam kiválasztása:" + +#~ msgid "Service" +#~ msgstr "Szolgáltatás" + +#~ msgid "Set" +#~ msgstr "Beállítás" + +#, fuzzy +#~ msgid "Set Cue In" +#~ msgstr "Felkeverés Beállítása" + +#, fuzzy +#~ msgid "Set Cue Out" +#~ msgstr "Lekeverés Beállítása" + +#~ msgid "Set Default Template" +#~ msgstr "Alapértelmezett sablon beállítása" + +#~ msgid "Share" +#~ msgstr "Megosztás" + +#~ msgid "Show Source" +#~ msgstr "Műsorforrás" + +#~ msgid "Show Summary" +#~ msgstr "Műsor összesítő" + +#~ msgid "Show Waveform" +#~ msgstr "Hullámforma mutatása" + +#~ msgid "Show me what I am sending " +#~ msgstr "Mutasd meg, hogy mit küldök" + +#~ msgid "Shuffle playlist" +#~ msgstr "Véletlenszerű lejátszási lista" + +#~ msgid "Source Streams" +#~ msgstr "Forrás adásfolyamok" + +#~ msgid "Static Smart Block" +#~ msgstr "Statikus okosblokk" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statikus okostábla tartalmak:" + +#~ msgid "Station Description:" +#~ msgstr "Állomás leírása:" + +#~ msgid "Station Web Site:" +#~ msgstr "Az állomás honlapja:" + +#~ msgid "Stop" +#~ msgstr "Leállítás" + +#~ msgid "Stream " +#~ msgstr "Adásfolyam" + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Adásfolyam adat gyűjtemény állapota" + +#~ msgid "Stream Settings" +#~ msgstr "Adásfolyam beállítások" + +#~ msgid "Stream URL:" +#~ msgstr "Adásfolyam URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Adásfolyam URL:" + +#~ msgid "Style" +#~ msgstr "Stílus" + +#~ msgid "Subscribe" +#~ msgstr "Feliratkozás" + +#~ msgid "Subtitle" +#~ msgstr "Felirat" + +#~ msgid "Summary" +#~ msgstr "Összegzés" + +#~ msgid "Support Feedback" +#~ msgstr "Támogatási visszajelzés" + +#~ msgid "Support setting updated." +#~ msgstr "Támogatási beállítások frissítve." + +#~ msgid "Table Test" +#~ msgstr "Táblateszt" + +#~ msgid "Terms and Conditions" +#~ msgstr "Felhasználási feltételek" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "A kívánt blokkhosszúság nem érhető el ha az Airtime nem talál elég egyedi, a feltételnek megfelelő sávot. Ha ez engedélyezett, egy sávot többször is hozzá lehet adni az okosblokkhoz." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "A következő információk megjelennek a hallgatók számára a saját médialejátszóikban:" + +#~ msgid "The requested action is not supported!" +#~ msgstr "A kért művelet nem támogatott!" + +#, fuzzy +#~ msgid "The work is in the public domain" +#~ msgstr "A munka a nyilvános felületen folyik" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ez a verzió már nem támogatott." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ez a verzió hamarosan elavul." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "A média lejátszáshoz frissíteni kell a böngészőt egy újabb verzióra, vagy frissíteni kell a %sFlash bővítményt%s." + +#~ msgid "Toggle Details" +#~ msgstr "Részletek" + +#~ msgid "Track:" +#~ msgstr "Sáv:" + +#~ msgid "TuneIn Settings" +#~ msgstr "TuneIn beállítások" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Gépelje be a képen látható karaktereket." + +#~ msgid "Update Required" +#~ msgstr "Frissítés szükséges" + +#~ msgid "Update show" +#~ msgstr "A műsor frissítése" + +#~ msgid "Update track" +#~ msgstr "Sáv frissítése" + +#~ msgid "Upload" +#~ msgstr "Feltöltés" + +#~ msgid "Upload audio tracks" +#~ msgstr "Audió sávok feltöltése" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "A műsorsugárzó szoftverben ezeket a beállításokat használva lehet bármikor élőben sugározni." + +#~ msgid "User Type" +#~ msgstr "Felhasználótípus" + +#~ msgid "View Feed" +#~ msgstr "Hírcsatorna megtekintése" + +#~ msgid "View track" +#~ msgstr "Sáv megtekintése" + +#~ msgid "Viewing " +#~ msgstr "Megtekintés " + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "A keresett oldal nem található." + +#~ msgid "Web Stream" +#~ msgstr "Web-adásfolyam" + +#~ msgid "Webstream" +#~ msgstr "Web-adásfolyam" + +#, fuzzy, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Üdvözöljük az %s-nál!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Üdvözöljük a %s demó változatában! „admin” felhasználónévvel és „admin” jelszóval lehet bejelentkezni." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Üdvözli az új Airtime Pro!" + +#~ msgid "What" +#~ msgstr "Mi" + +#~ msgid "When" +#~ msgstr "Mikor" + +#~ msgid "Who" +#~ msgstr "Kicsoda" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Nincs megfigyelt médiamappa." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Később módosíthatóak a tulajdonságokban és a felhasználói beállításokban." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "Nincs jogosultsága a lap eléréséhez!" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "Nincs jogosultsága ennek a fájlnak a szerkesztéséhez." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "Ez a sáv már minden elérhető forrásban közzé lett téve!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "El kell fogadnia az adatvédelmi irányelveket." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "Ez a sáv még egyik forrásban sincs közzétéve!" + +#~ msgid "Your trial expires in" +#~ msgstr "A kipróbálási időszak lejár" + +#~ msgid "and" +#~ msgstr "és" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "file meets the criteria" +#~ msgstr "feltételeknek megfelelő fájl" + +#~ msgid "files meet the criteria" +#~ msgstr "feltételeknek megfelelő fájl" + +#~ msgid "iTunes Fields" +#~ msgstr "iTunes mezők" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "teljes hangerő" + +#~ msgid "mute" +#~ msgstr "elnémítás" + +#~ msgid "next" +#~ msgstr "következő" + +#~ msgid "or" +#~ msgstr "vagy" + +#~ msgid "pause" +#~ msgstr "szünet" + +#~ msgid "play" +#~ msgstr "lejátszás" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "kérjük, tegye másodpercekbe '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "A kapcsolódó műsorok tartalmait bármelyik adás előtt vagy után kell ütemezni" +#~ msgid "previous" +#~ msgstr "előző" + +#~ msgid "stop" +#~ msgstr "leállítás" + +#~ msgid "unmute" +#~ msgstr "elnémítás megszüntetése" diff --git a/legacy/locale/hy/LC_MESSAGES/libretime.po b/legacy/locale/hy/LC_MESSAGES/libretime.po deleted file mode 100644 index 5bb57e5e3..000000000 --- a/legacy/locale/hy/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5456 +0,0 @@ -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2014-07-28 11:49+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/airtime/language/hy/)\n" -"Language: hy\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/hy_AM/LC_MESSAGES/libretime.po b/legacy/locale/hy_AM/LC_MESSAGES/libretime.po deleted file mode 100644 index cd365f67f..000000000 --- a/legacy/locale/hy_AM/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5459 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Armenian (Armenia) (http://www.transifex.com/sourcefabric/airtime/language/hy_AM/)\n" -"Language: hy_AM\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/id_ID/LC_MESSAGES/libretime.po b/legacy/locale/id_ID/LC_MESSAGES/libretime.po deleted file mode 100644 index 010a130d3..000000000 --- a/legacy/locale/id_ID/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5458 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/sourcefabric/airtime/language/id_ID/)\n" -"Language: id_ID\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/it_IT/LC_MESSAGES/libretime.po b/legacy/locale/it_IT/LC_MESSAGES/libretime.po index eb7d7a8c4..afd3ea868 100644 --- a/legacy/locale/it_IT/LC_MESSAGES/libretime.po +++ b/legacy/locale/it_IT/LC_MESSAGES/libretime.po @@ -1,2496 +1,1605 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: -# danse , 2014 +# Danse , 2014 # Sourcefabric , 2012 -# xorxi , 2014 +# Xorxi , 2014 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Italian (Italy) (http://www.transifex.com/sourcefabric/airtime/language/it_IT/)\n" +"Language-Team: Italian (Italy)\n" "Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Accedi" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "L'anno %s deve essere compreso nella serie 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nuova password" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Prego inserire e confermare la sua nuova password nel seguente spazio." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Storico playlist" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Gestisci cartelle media" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Impostazioni Stream" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Salva" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Richiesto)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Opzioni aggiuntive" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "La seguente informazione sarà esposta agli ascoltatori nelle loro eseguzione:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Il sito della tua radio)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "a" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Scegli cartella" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Imposta" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Importa cartelle:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Aggiungi " - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s non è una data valida" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Rimuovi elenco visionato" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Sta guardando i cataloghi media." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Scegli giorni:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Rimuovi" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Ripeti giorni:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Trova Shows" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtra storia" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Mostra fonte" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Fonte principale" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "Ok" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s non è un ora valida" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Gestione utenti" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Nuovo Utente" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Nome utente" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Nome" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Cognome" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Tipo di utente" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Espandi blocco statico" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Espandi blocco dinamico " - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nome:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Descrizione:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Durata:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Riproduzione casuale" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Casuale" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Playlist crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Dissolvenza in chiusura:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancella" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Salva playlist" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Non aprire playlist" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Dissolvenza in entrata:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue in:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Lunghezza originale:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:47 +msgid "Greek" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "in uso" +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Tutto" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Opzioni di ricerca avanzate" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Descrizione" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Lunghezza predefinita:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "No webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Chiudi" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Nome" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Creatore" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Lingua" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "File importato in corso..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Titolo:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Creatore:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Traccia:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Lunghezza" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Percentuale" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Velocità di trasmissione: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Umore:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Genere:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Anno:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Etichetta:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Compositore:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conduttore:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Numero ISRC:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Sito web:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Lingua:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Blocco intelligente e dinamico" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Blocco intelligente e statico" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Traccia audio" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Contenuti playlist:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Contenuto di blocco intelligente e statico:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Criteri di blocco intelligenti e dinamici:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Limiti" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Stato" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Spazio disco" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "precedente" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendario" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "riproduci" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pausa" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "next" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "disattiva microfono" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "attiva microfono" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "volume massimo" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Aggiornamenti richiesti" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Per riproduzione media, avrà bisogno di aggiornare il suo browser ad una recente versione o aggiornare il suo %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Chi siamo" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Per aiuto dettagliato, legga %suser manual%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Seleziona stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Aggiungi show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Aggiorna show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Cosa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Quando" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Ingresso Stream diretta" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Chi" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Stile" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Start" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Titolo" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Lunghezza" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genere" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Etichetta" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Precedente:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Successivo:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Source Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "IN ONDA" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Ascolta" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Esci" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Playlist" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Blocchi intelligenti" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Utenti" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Streams" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Stato" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Storico playlist" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Statistiche ascolto" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Aiuto" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Iniziare" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Manuale utente" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Pagina non trovata!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "La pagina che stai cercando non esiste! " - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Dissolvenza in entrata" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Dissolvenza in uscita" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Non è consentito disconnettersi dalla fonte." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Nessuna fonte connessa a questo ingresso." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Non ha il permesso per cambiare fonte." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "L' e-mail non può essere inviata. Controlli le impostazioni della sua mail e si accerti che è stata configurata correttamente." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Nome utente o password forniti errati. Per favore riprovi." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream senza titolo" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream salvate." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Valori non validi." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User aggiunto con successo!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User aggiornato con successo!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Anteprima" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Seleziona cursore" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Rimuovere il cursore" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Cancella" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "lo show non esiste" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Preferenze aggiornate." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Aggiornamento impostazioni Stream." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "il percorso deve essere specificato" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problemi con Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s non trovato" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Qualcosa è andato storto." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Aggiungi a playlist" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Aggiungi al blocco intelligente" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Scarica" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Nessuna azione disponibile" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Non ha il permesso per cancellare gli elementi selezionati." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Non è permesso l'accesso alla risorsa." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Non è permesso l'accesso alla risorsa." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Richiesta errata. 'modalità ' parametro non riuscito." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Richiesta errata. 'modalità ' parametro non valido" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Non è consentito disconnettersi dalla fonte." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Nessuna fonte connessa a questo ingresso." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Non ha il permesso per cambiare fonte." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Sta visualizzando una versione precedente di %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Non può aggiungere tracce al blocco dinamico." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Non ha i permessi per cancellare la selezione %s(s)." +msgid "%s not found" +msgstr "%s non trovato" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Può solo aggiungere tracce al blocco intelligente." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Qualcosa è andato storto." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Anteprima" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Playlist senza nome" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Aggiungi a playlist" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Blocco intelligente senza nome" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Aggiungi al blocco intelligente" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Playlist sconosciuta" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Cancella" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Scarica" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Nessuna azione disponibile" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Non ha il permesso per cancellare gli elementi selezionati." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Registra:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Stream Principale" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Live Stream" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Niente programmato" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Show attuale:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Attuale" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Sta gestendo l'ultima versione" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Nuova versione disponibile:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Aggiungi all'attuale playlist" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Aggiungi all' attuale blocco intelligente" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Sto aggiungendo un elemento" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Aggiunte %s voci" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Puoi solo aggiungere tracce ai blocchi intelligenti." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Puoi solo aggiungere tracce, blocchi intelligenti, e webstreams alle playlist." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "" -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Aggiungi " + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Edita" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Rimuovi" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Edita Metadata" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Aggiungi agli show selezionati" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Seleziona" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Seleziona pagina" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Deseleziona pagina" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Deseleziona tutto" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "E' sicuro di voler eliminare la/e voce/i selezionata/e?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Titolo" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Creatore" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Velocità di trasmissione" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Compositore" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Conduttore" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Codificato da" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genere" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Etichetta" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Lingua" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Ultima modifica" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Ultima esecuzione" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Lunghezza" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Formato (Mime)" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Genere (Mood)" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Proprietario" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Ripeti" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Velocità campione" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Numero traccia" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Caricato" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Sito web" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Anno" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Caricamento..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Tutto" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "File" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Playlist" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Blocchi intelligenti" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web Streams" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Tipologia sconosciuta:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Sei sicuro di voler eliminare gli elementi selezionati?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Caricamento in corso..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Dati recuperati dal server..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Errore codice:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Errore messaggio:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "L'ingresso deve essere un numero positivo" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "L'ingresso deve essere un numero" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "L'ingresso deve essere nel formato : yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "L'ingresso deve essere nel formato : hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Stai attualmente scaricando file. %sCambiando schermata cancellerà il processo di caricamento. %sSei sicuro di voler abbandonare la pagina?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "inserisca per favore il tempo '00:00:00(.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Il suo browser non sopporta la riproduzione di questa tipologia di file:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Il blocco dinamico non c'è in anteprima" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Limitato a:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Playlist salvata" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Airtime è insicuro sullo stato del file. °Questo può accadere quando il file è su un drive remoto che non è accessibile o il file è su un elenco che non viene più visionato." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Programma in ascolto su %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Ricordamelo tra 1 settimana" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Non ricordarmelo" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Si, aiuta Airtime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "L'immagine deve essere in formato jpg, jpeg, png, oppure gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Uno statico blocco intelligente salverà i criteri e genererà il blocco del contenuto immediatamente. Questo permette di modificare e vedere la biblioteca prima di aggiungerla allo show." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Un dinamico blocco intelligente salverà i criteri. Il contenuto del blocco sarà generato per aggiungerlo ad un show. Non riuscirà a vedere e modificare il contenuto della Biblioteca." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Blocco intelligente casuale" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Blocco Intelligente generato ed criteri salvati" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Blocco intelligente salvato" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Elaborazione in corso..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Seleziona modificatore" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "contiene" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "non contiene" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "è " -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "non è" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "inizia con" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "finisce con" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "è più di" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "è meno di" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "nella seguenza" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Genere" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Scelga l'archivio delle cartelle" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Scelga le cartelle da guardare" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2498,2855 +1607,2301 @@ msgstr "" "E' sicuro di voler cambiare l'archivio delle cartelle?\n" " Questo rimuoverà i file dal suo archivio Airtime!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Gestisci cartelle media" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "E' sicuro di voler rimuovere le cartelle guardate?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Questo percorso non è accessibile attualmente." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "" -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Connesso al server di streaming." -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Stream disattivato" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Ottenere informazioni dal server..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Non può connettersi al server di streaming" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Controllo questa opzione per abilitare metadata per le stream OGG (lo stream metadata è il titolo della traccia,artista, e nome dello show esposto in un audio player). VLC e mplayer riscontrano un grave errore nel eseguire le stream OGG/VORBIS che ha abilitata l'informazione metadata:si disconnetterà lo stream dopo ogni canzone. Se sta usando uno stream OGG ed i suoi ascoltatori non richiedono supporto nelle eseguzionu audio, può scegliere di abilitare questa opzione." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Controlli questo spazio per uscire automaticamente dalla fonte Master/Show." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Controlli questo spazio per accendere automaticamente alla fonte di Master / Show su collegamento di fonte." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Se il suo server Icecast si aspetta un nome utente di 'fonte', questo spazio può essere lasciato in bianco." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Se la live stream non risponde al nome utente, questo campo dovrebbe essere 'fonte'." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "" -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Nessun risultato trovato" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Questo segue lo stesso modello di sicurezza per gli show: solo gli utenti assegnati allo show possono connettersi." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Imposta autenticazione personalizzata che funzionerà solo per questo show." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "L'istanza dello show non esiste più!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "" -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Show" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Lo show è vuoto" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1min" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5min" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10min" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15min" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30min" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60min" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Recupera data dal server..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Lo show non ha un contenuto programmato." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "" -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Gennaio" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Febbraio" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Marzo" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Aprile" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Maggio" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Giugno" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Luglio" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Agosto" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Settembre" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Ottobre" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Novembre" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Dicembre" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Gen" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Feb" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Apr" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Giu" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Lug" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Ago" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Set" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Ott" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dic" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Domenica" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Lunedì" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Martedì" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Mercoledì" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Giovedì" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Venerdì" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Sabato" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Dom" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Lun" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Mer" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Gio" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Ven" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sab" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Gli show più lunghi del tempo programmato saranno tagliati dallo show successivo." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Cancellare lo show attuale?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Fermare registrazione dello show attuale?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "OK" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Contenuti dello Show" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Rimuovere tutto il contenuto?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Cancellare la/e voce/i selezionata/e?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Fine" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Durata" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Dissolvenza in entrata" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Dissolvenza in uscita" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Show vuoto" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Registrando da Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Anteprima traccia" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Non può programmare fuori show." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Spostamento di un elemento in corso" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Spostamento degli elementi %s in corso" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Salva" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancella" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Seleziona tutto" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Nessuna selezione" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Rimuovi la voce selezionata" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Salta alla traccia dell'attuale playlist" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Cancella show attuale" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Apri biblioteca per aggiungere o rimuovere contenuto" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Aggiungi/Rimuovi contenuto" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "in uso" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disco" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Cerca in" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Apri" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Amministratore " -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Programma direttore" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Ospite" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Invia supporto feedback:" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Mostra/nascondi colonne" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Da {da} a {a}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Dom" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Lun" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Mer" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Gio" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Ven" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Sab" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Chiudi" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Ore" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuti" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Completato" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "" -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "" -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "" -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "" -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "" -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "" -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "" -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "" -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "" -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "" -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "" -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Descrizione" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Abilitato" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Disattivato" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "L' e-mail non può essere inviata. Controlli le impostazioni della sua mail e si accerti che è stata configurata correttamente." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Nome utente o password forniti errati. Per favore riprovi." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Sta visualizzando una versione precedente di %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Non può aggiungere tracce al blocco dinamico." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Non ha i permessi per cancellare la selezione %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Può solo aggiungere tracce al blocco intelligente." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Playlist senza nome" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Blocco intelligente senza nome" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Playlist sconosciuta" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Preferenze aggiornate." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Aggiornamento impostazioni Stream." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "il percorso deve essere specificato" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problemi con Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Ritrasmetti show %s da %s a %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Seleziona cursore" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Rimuovere il cursore" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "lo show non esiste" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Vedi file registrati Metadata" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "User aggiunto con successo!" -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "User aggiornato con successo!" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Webstream senza titolo" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream salvate." -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Valori non validi." -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Edita show" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Carattere inserito non valido" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Il giorno deve essere specificato" -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "L'ora dev'essere specificata" -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Aspettare almeno un'ora prima di ritrasmettere" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Non puoi spostare show ripetuti" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Non puoi spostare uno show passato" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Non puoi spostare uno show nel passato" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Non puoi sovrascrivere gli show" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Lo show è stato cancellato perché lo show registrato non esiste!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Devi aspettare un'ora prima di ritrasmettere." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Riprodotti" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Seleziona criteri" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Velocità campione (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "ore" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minuti" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "elementi" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinamico" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statico" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Genera contenuto playlist e salva criteri" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Eseguzione casuale playlist" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Il margine non può essere vuoto o più piccolo di 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Il margine non può superare le 24ore" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Il valore deve essere un numero intero" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 è il limite massimo di elementi che può inserire" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Devi selezionare da Criteri e Modifica" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "La lunghezza deve essere nel formato '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Il valore deve essere numerico" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Il valore deve essere inferiore a 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Il valore deve essere inferiore a %s caratteri" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Il valore non deve essere vuoto" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Numero ISRC :" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Importa Folder:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Folder visionati:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Catalogo non valido" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Ripeti tipo:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "settimanalmente" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "mensilmente" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Seleziona giorni:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Data fine:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Ripeti all'infinito?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "La data di fine deve essere posteriore a quella di inizio" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Il calore richiesto non può rimanere vuoto" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Ripetizioni?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Non creare show al passato" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Non modificare data e ora di inizio degli slot in eseguzione" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "L'ora e la data finale non possono precedere quelle iniziali" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Non ci può essere una durata <0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Non ci può essere una durata 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Non ci può essere una durata superiore a 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Username:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Password:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Nome:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Cognome:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Cellulare:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "tipo di utente:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Il nome utente esiste già ." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Usa autenticazione clienti:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Personalizza nome utente " -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Personalizza Password" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Il campo nome utente non può rimanere vuoto." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Il campo della password non può rimanere vuoto." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Registra da Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ritrasmetti?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "giorni" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" msgstr "" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Ripeti tipo:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "settimanalmente" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensilmente" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Seleziona giorni:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" msgstr "" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Data inizio:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Carattere inserito non valido" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Cerca utenti:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Dj:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" msgstr "" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Tutti i miei show:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" msgstr "" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Data fine:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Ripeti all'infinito?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "La data di fine deve essere posteriore a quella di inizio" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Colore sfondo:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Colore testo:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Il giorno deve essere specificato" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nome:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "L'ora dev'essere specificata" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Aspettare almeno un'ora prima di ritrasmettere" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Show senza nome" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Genere:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Descrizione:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Durata:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Ripetizioni?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Non creare show al passato" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Non modificare data e ora di inizio degli slot in eseguzione" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "L'ora e la data finale non possono precedere quelle iniziali" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Non ci può essere una durata <0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Non ci può essere una durata 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Non ci può essere una durata superiore a 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Non puoi sovrascrivere gli show" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Cerca utenti:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Dj:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Username:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Password:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Nome:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Cognome:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Cellulare:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "tipo di utente:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Il nome utente esiste già ." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Data inizio:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titolo:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Creatore:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Anno:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Etichetta:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Compositore:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conduttore:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Umore:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "Numero ISRC :" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Sito web:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Lingua:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Nome stazione" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo stazione: " -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Note: La lunghezze superiori a 600x600 saranno ridimensionate." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "La settimana inizia il" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Registra da Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ritrasmetti?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reimposta password" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Solo numeri." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Accedi" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Password" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Conferma nuova password" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "La password di conferma non corrisponde con la sua password." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Nome utente" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reimposta password" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "giorni" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Attiva:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Tipo di stream:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tipo di servizio:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Canali:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Il server non è libero." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Il port non può essere libero." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount non può essere vuoto con il server Icecast." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "In esecuzione" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' non va bene con il formato data '%formato%'" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' è più corto di %min% caratteri" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' è più lungo di %max% caratteri" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' non è tra '%min%' e '%max%' compresi" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Tutti i miei show:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Seleziona criteri" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Velocità campione (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "ore" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuti" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "elementi" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamico" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statico" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Genera contenuto playlist e salva criteri" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Eseguzione casuale playlist" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Casuale" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Il margine non può essere vuoto o più piccolo di 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Il margine non può superare le 24ore" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Il valore deve essere un numero intero" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 è il limite massimo di elementi che può inserire" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Devi selezionare da Criteri e Modifica" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "La lunghezza deve essere nel formato '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Il valore deve essere numerico" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Il valore deve essere inferiore a 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Il valore deve essere inferiore a %s caratteri" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Il valore non deve essere vuoto" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis Metadata" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Etichetta Stream:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Artista - Titolo" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Show - Artista - Titolo" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Nome stazione - Nome show" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "L'anno %s deve essere compreso nella serie 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s non è una data valida" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s non è un ora valida" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Attiva:" -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Tipo di stream:" -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Velocità di trasmissione: " -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Tipo di servizio:" -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Canali:" -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Nome" -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Mount Point" -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" msgstr "" -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" msgstr "" -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Il server non è libero." -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Il port non può essere libero." -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount non può essere vuoto con il server Icecast." -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Importa Folder:" -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Folder visionati:" -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Catalogo non valido" -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Il calore richiesto non può rimanere vuoto" -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname" -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' non va bene con il formato data '%formato%'" -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue in e cue out sono nulli." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Il cue in non può essere più grande del cue out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Il cue out non può essere più grande della lunghezza del file." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Il cue out non può essere più piccolo del cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "La lunghezza deve superare 0 minuti" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "La lunghezza deve essere nella forma \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL deve essere nella forma \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL dove essere di 512 caratteri o meno" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Nessun MIME type trovato per le webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Webstream non può essere vuoto" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Non è possibile analizzare le playlist XSPF " - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Non è possibile analizzare le playlist PLS" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Non è possibile analizzare le playlist M3U" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Webstream non valido - Questo potrebbe essere un file scaricato." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Tipo di stream sconosciuto: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Ritrasmetti da %s a %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Seleziona paese" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' è più corto di %min% caratteri" -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'orario)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Il programma che sta visionando è fuori data!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Non è abilitato all'elenco degli show%s" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Non può aggiungere file a show registrati." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Lo show % supera la lunghezza massima e non può essere programmato." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Lo show %s è già stato aggiornato! " - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' è più lungo di %max% caratteri" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' non è tra '%min%' e '%max%' compresi" -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Il File selezionato non esiste!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s è già stato visionato." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contiene una sotto directory già visionata: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s annidato con una directory già visionata: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s non è una directory valida." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s non esiste nella lista delle cartelle visionate." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5354,7 +3909,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5362,7 +3917,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5371,20 +3926,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue in e cue out sono nulli." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Il cue out non può essere più grande della lunghezza del file." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Il cue in non può essere più grande del cue out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Il cue out non può essere più piccolo del cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s è già stato visionato." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contiene una sotto directory già visionata: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s annidato con una directory già visionata: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s non è una directory valida." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s è già impostato come attuale cartella archivio o appartiene alle cartelle visionate." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s non esiste nella lista delle cartelle visionate." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Seleziona paese" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'orario)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Il programma che sta visionando è fuori data! (disadattamento dell'esempio)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Il programma che sta visionando è fuori data!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Non è abilitato all'elenco degli show%s" + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Non può aggiungere file a show registrati." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Lo show % supera la lunghezza massima e non può essere programmato." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Lo show %s è già stato aggiornato! " + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Il File selezionato non esiste!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Gli show possono avere una lunghezza massima di 24 ore." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5392,135 +4065,202 @@ msgstr "" "Non si possono programmare show sovrapposti.\n" " Note: Ridimensionare uno slot a ripetizione colpisce tutte le sue ripetizioni." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Ritrasmetti da %s a %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "La lunghezza deve superare 0 minuti" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "La lunghezza deve essere nella forma \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL deve essere nella forma \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL dove essere di 512 caratteri o meno" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Nessun MIME type trovato per le webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Webstream non può essere vuoto" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Non è possibile analizzare le playlist XSPF " + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Non è possibile analizzare le playlist PLS" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Non è possibile analizzare le playlist M3U" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Webstream non valido - Questo potrebbe essere un file scaricato." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Tipo di stream sconosciuto: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Vedi file registrati Metadata" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendario" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Utenti" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Streams" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Edita show" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Statistiche ascolto" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:250 +msgid "Permission denied" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Iniziare" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Non puoi spostare show ripetuti" -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Manuale utente" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Non puoi spostare uno show passato" -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Non puoi spostare uno show nel passato" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Lo show è stato cancellato perché lo show registrato non esiste!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Devi aspettare un'ora prima di ritrasmettere." + +#: application/services/HistoryService.php:1064 +msgid "Track" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Riprodotti" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Alla lunghezza di blocco desiderata non si arriverà se Airtime non può trovare abbastanza tracce uniche per accoppiare i suoi criteri.Abiliti questa scelta se desidera permettere alle tracce di essere aggiunte molteplici volte al blocco intelligente." +#~ msgid " to " +#~ msgstr "a" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Se Airtime è dietro un router o firewall, può avere bisogno di configurare il trasferimento e queste informazioni di campo saranno incorrette. In questo caso avrò bisogno di aggiornare manualmente questo campo per mostrare ospite/trasferimento/installa di cui il suo Dj ha bisogno per connettersi. La serie permessa è tra 1024 e 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Per promuovere la sua stazione, 'Spedisca aderenza feedback' deve essere abilitato)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Per maggiori informazioni, legga per favore il %sManuale Airtime%s" +#~ msgid "(Required)" +#~ msgstr "(Richiesto)" -#~ msgid "Support setting updated." -#~ msgstr "Aggiornamento impostazioni assistenza." +#~ msgid "(Your radio station website)" +#~ msgstr "(Il sito della tua radio)" -#~ msgid "Support Feedback" -#~ msgstr "Support Feedback" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(per scopi di verifica, non ci saranno pubblicazioni)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Digita le parole del riquadro." +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Phone:" -#~ msgstr "Telefono:" +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Station Web Site:" -#~ msgstr "Stazione sito web:" +#~ msgid "About" +#~ msgstr "Chi siamo" -#~ msgid "Country:" -#~ msgstr "Paese:" +#~ msgid "Add this show" +#~ msgstr "Aggiungi show" -#~ msgid "City:" -#~ msgstr "Città :" +#~ msgid "Additional Options" +#~ msgstr "Opzioni aggiuntive" -#~ msgid "Station Description:" -#~ msgstr "Descrizione stazione:" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Autorizzo il trattamento dei miei dati personali." - -#~ msgid "Default License:" -#~ msgstr "Licenza predefinita:" +#~ msgid "Advanced Search Options" +#~ msgstr "Opzioni di ricerca avanzate" #~ msgid "All rights are reserved" #~ msgstr "Tutti i diritti riservati" -#~ msgid "The work is in the public domain" -#~ msgstr "Il lavoro è nel dominio pubblico" +#~ msgid "Audio Track" +#~ msgstr "Traccia audio" + +#~ msgid "Choose Days:" +#~ msgstr "Scegli giorni:" + +#~ msgid "Choose folder" +#~ msgstr "Scegli cartella" + +#~ msgid "City:" +#~ msgstr "Città :" + +#~ msgid "Country:" +#~ msgstr "Paese:" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Attribution No Derivate Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5528,35 +4268,298 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Attribution Noncommercial Share Alike" -#~ msgid "Register Airtime" -#~ msgstr "Registro Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(per scopi di verifica, non ci saranno pubblicazioni)" +#~ msgid "Cue In: " +#~ msgstr "Cue in:" -#~ msgid "Show me what I am sending " -#~ msgstr "Mostra cosa sto inviando" +#~ msgid "Cue Out: " +#~ msgstr "Cue Out:" -#~ msgid "Terms and Conditions" -#~ msgstr "Termini e condizioni" +#~ msgid "Current Import Folder:" +#~ msgstr "Importa cartelle:" -#~ msgid "files meet the criteria" -#~ msgstr "Files e criteri" +#~ msgid "Default Length:" +#~ msgstr "Lunghezza predefinita:" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Per promuovere la sua stazione, 'Spedisca aderenza feedback' deve essere abilitato)." +#~ msgid "Default License:" +#~ msgstr "Licenza predefinita:" -#~ msgid "Your trial expires in" -#~ msgstr "La sua versione di prova scade entro" +#~ msgid "Disk Space" +#~ msgstr "Spazio disco" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Questa versione sarà presto aggiornata." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Blocco intelligente e dinamico" -#~ msgid "This version is no longer supported." -#~ msgstr "Questa versione non è più sopportata." +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Criteri di blocco intelligenti e dinamici:" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Espandi blocco dinamico " + +#~ msgid "Expand Static Block" +#~ msgstr "Espandi blocco statico" + +#~ msgid "Fade in: " +#~ msgstr "Dissolvenza in entrata:" + +#~ msgid "Fade out: " +#~ msgstr "Dissolvenza in chiusura:" + +#~ msgid "File import in progress..." +#~ msgstr "File importato in corso..." + +#~ msgid "Filter History" +#~ msgstr "Filtra storia" + +#~ msgid "Find Shows" +#~ msgstr "Trova Shows" + +#~ msgid "First Name" +#~ msgstr "Nome" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Per aiuto dettagliato, legga %suser manual%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Per maggiori informazioni, legga per favore il %sManuale Airtime%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Se Airtime è dietro un router o firewall, può avere bisogno di configurare il trasferimento e queste informazioni di campo saranno incorrette. In questo caso avrò bisogno di aggiornare manualmente questo campo per mostrare ospite/trasferimento/installa di cui il suo Dj ha bisogno per connettersi. La serie permessa è tra 1024 e 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Numero ISRC:" + +#~ msgid "Last Name" +#~ msgstr "Cognome" + +#~ msgid "Length:" +#~ msgstr "Lunghezza" + +#~ msgid "Limit to " +#~ msgstr "Limiti" + +#~ msgid "Listen" +#~ msgstr "Ascolta" + +#~ msgid "Live Stream Input" +#~ msgstr "Ingresso Stream diretta" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Logout" +#~ msgstr "Esci" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "La pagina che stai cercando non esiste! " + +#~ msgid "Manage Users" +#~ msgstr "Gestione utenti" + +#~ msgid "Master Source" +#~ msgstr "Fonte principale" + +#~ msgid "New User" +#~ msgstr "Nuovo Utente" + +#~ msgid "New password" +#~ msgstr "Nuova password" + +#~ msgid "Next:" +#~ msgstr "Successivo:" + +#~ msgid "No open playlist" +#~ msgstr "Non aprire playlist" + +#~ msgid "No webstream" +#~ msgstr "No webstream" + +#~ msgid "OK" +#~ msgstr "Ok" + +#~ msgid "ON AIR" +#~ msgstr "IN ONDA" + +#~ msgid "Original Length:" +#~ msgstr "Lunghezza originale:" + +#~ msgid "Page not found!" +#~ msgstr "Pagina non trovata!" + +#~ msgid "Phone:" +#~ msgstr "Telefono:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Contenuti playlist:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Playlist crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Prego inserire e confermare la sua nuova password nel seguente spazio." #~ msgid "Please upgrade to " #~ msgstr "Per favore aggiorni" +#~ msgid "Previous:" +#~ msgstr "Precedente:" + +#~ msgid "Register Airtime" +#~ msgstr "Registro Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Rimuovi elenco visionato" + +#~ msgid "Repeat Days:" +#~ msgstr "Ripeti giorni:" + +#~ msgid "Sample Rate:" +#~ msgstr "Percentuale" + +#~ msgid "Save playlist" +#~ msgstr "Salva playlist" + +#~ msgid "Select stream:" +#~ msgstr "Seleziona stream:" + +#~ msgid "Set" +#~ msgstr "Imposta" + +#~ msgid "Show Source" +#~ msgstr "Mostra fonte" + +#~ msgid "Show me what I am sending " +#~ msgstr "Mostra cosa sto inviando" + +#~ msgid "Shuffle playlist" +#~ msgstr "Riproduzione casuale" + +#~ msgid "Source Streams" +#~ msgstr "Source Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Blocco intelligente e statico" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Contenuto di blocco intelligente e statico:" + +#~ msgid "Station Description:" +#~ msgstr "Descrizione stazione:" + +#~ msgid "Station Web Site:" +#~ msgstr "Stazione sito web:" + +#~ msgid "Stream " +#~ msgstr "Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Impostazioni Stream" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL:" + +#~ msgid "Style" +#~ msgstr "Stile" + +#~ msgid "Support Feedback" +#~ msgstr "Support Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Aggiornamento impostazioni assistenza." + +#~ msgid "Terms and Conditions" +#~ msgstr "Termini e condizioni" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Alla lunghezza di blocco desiderata non si arriverà se Airtime non può trovare abbastanza tracce uniche per accoppiare i suoi criteri.Abiliti questa scelta se desidera permettere alle tracce di essere aggiunte molteplici volte al blocco intelligente." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "La seguente informazione sarà esposta agli ascoltatori nelle loro eseguzione:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Il lavoro è nel dominio pubblico" + +#~ msgid "This version is no longer supported." +#~ msgstr "Questa versione non è più sopportata." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Questa versione sarà presto aggiornata." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Per riproduzione media, avrà bisogno di aggiornare il suo browser ad una recente versione o aggiornare il suo %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Traccia:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Digita le parole del riquadro." + +#~ msgid "Update Required" +#~ msgstr "Aggiornamenti richiesti" + +#~ msgid "Update show" +#~ msgstr "Aggiorna show" + +#~ msgid "User Type" +#~ msgstr "Tipo di utente" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Cosa" + +#~ msgid "When" +#~ msgstr "Quando" + +#~ msgid "Who" +#~ msgstr "Chi" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Sta guardando i cataloghi media." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Autorizzo il trattamento dei miei dati personali." + +#~ msgid "Your trial expires in" +#~ msgstr "La sua versione di prova scade entro" + +#~ msgid "files meet the criteria" +#~ msgstr "Files e criteri" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volume massimo" + +#~ msgid "mute" +#~ msgstr "disattiva microfono" + +#~ msgid "next" +#~ msgstr "next" + +#~ msgid "pause" +#~ msgstr "pausa" + +#~ msgid "play" +#~ msgstr "riproduci" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "inserisca per favore il tempo in secondi '00(.0)'" + +#~ msgid "previous" +#~ msgstr "precedente" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "attiva microfono" diff --git a/legacy/locale/ja/LC_MESSAGES/libretime.po b/legacy/locale/ja/LC_MESSAGES/libretime.po deleted file mode 100644 index f2a65b2dc..000000000 --- a/legacy/locale/ja/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5565 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -# Akemi Makino , 2014 -# Kazuhiro Shimbo , 2014 -# shotaro , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Japanese (http://www.transifex.com/sourcefabric/airtime/language/ja/)\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "ログイン" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "新しいパスワード" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "下記のフィールドに新しいパスワードを入力し確認して下さい。" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "配信履歴" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "配信レポート" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "トラック別レポート" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "番組別レポート" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "メディアフォルダの管理" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "配信設定" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "保存" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB " - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "配信" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(必須)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "詳細設定" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "以下の情報はリスナーが利用するプレイヤー上に表示されます。" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(あなたのラジオステーションウェブサイト)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "配信先URL:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "or" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "and" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "~" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "番組配信回の選択" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "番組はありません。" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "検索" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "フォルダ選択" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "設定" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "現在のインポートフォルダ" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "追加" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "同期ディレクトリを削除する" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "いかなるメディアフォルダも見ていません" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "日付選択: " - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "削除" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "再配信日:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "番組を探す" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "絞り込み履歴" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "番組ソース" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "マスターソース" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "ユーザー管理" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "ユーザー追加" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id " - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "ユーザー名" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "名" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "姓" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "ユーザー種別" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "スマート・ブロックの拡張" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "自動生成スマート・ブロックを拡張する" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "名前:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "説明:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "長さ:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "プレイリストのシャッフル" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "シャッフル" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "プレイリスト クロスフェード" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "プレイリストを空にする。" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "クリア" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "フェードアウト:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "キャンセル" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "プレイリストを保存" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "プレイリストが開かれていません。" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "波形の表示" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t) " - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "フェードイン:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "キューイン:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "例:01:22:33.4" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "キューアウト:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "オリジナルの長さ:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "使用中" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "全て" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "詳細検索" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "説明" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "配信元URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "ウェブ配信の長さ(初期値):" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "ウェブ配信がありません。" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "閉じる" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "名前" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "アーティスト" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "言語" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "著作権" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "ファイルをインポート中…" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "タイトル:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "アーティスト:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "アルバム:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "トラック:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "時間:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "サンプルレート:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "ビットレート:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "ムード:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "ジャンル:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "年:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "ラベル:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "作曲者" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "コンダクター:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "著作権:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC番号:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "ウェブサイト:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "言語:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "ファイルの場所: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "ウェブ配信" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "自動生成スマート・ブロック" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "スマート・ブロック" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "オーディオトラック" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "プレイリストの内容:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "スマート・ブロックの内容:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "自動生成スマート・ブロックの基準:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "次の値に制限する:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "ステータス" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "ディスク容量" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "前" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "再生" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "一時停止" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "次" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "停止" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "ミュート" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "ミュート解除" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "最大音量" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "アップデートが必要です。" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "メディアを再生するためには、お使いのブラウザを最新のバージョンにアップデートするか、%sフラッシュプラグイン%sをアップデートする必要があります。" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "トラック別レポートテンプレート作成" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "配信レポートテンプレートの作成" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "さらに要素を追加" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "あたしいフィールドの追加" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "初期設定テンプレートを作成" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "配信レポートテンプレート" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "新規テンプレート作成" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "テンプレートはありません。" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "初期設定として保存" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "トラック別レポートテンプレート" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "新規テンプレート作成" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "テンプレートはありません。" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Rakuten.FMについて" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "より詳細なヘルプは、%sユーザーマニュアル%sをお読み下さい。 " - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "ライブ配信" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "共有" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "配信先の選択:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "この番組を追加" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "番組を更新" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "番組内容" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "番組配信時間" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "ライブ配信の入力" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "DJ" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "スタイル" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "開始" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "タイトル" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "アルバム" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "時間" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "ジャンル" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "レーベル" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "前の曲:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "次の曲:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "配信ソース" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "試聴" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "ログアウト" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "プレイリスト" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "スマートブロック" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "ヘルプ" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "ページが見つかりませんでした。" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "お探しのページは存在しないようです。" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "オーディオプレイヤー" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "再生" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "停止" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "キューイン" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "キューインの設定" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "キューアウト" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "キューアウトの設定" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "カーソル" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "フェードイン" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "フェードアウト" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "ソースを切断する権限がありません。" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "この入力に接続されたソースが存在しません。" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "ソースを切り替える権限がありません。" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "メールが送信できませんでした。メールサーバーの設定を確認してください。" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "入力されたユーザー名またはパスワードが誤っています。" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "無題のウェブ配信" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "ウェブ配信が保存されました。" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "入力欄に無効な値があります。" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "ユーザーの追加に成功しました。" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "ユーザーの更新に成功しました。" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "設定の更新に成功しました。" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "プレビュー" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "カーソルを選択" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "カーソルを削除" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "削除" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "番組が存在しません。" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "設定が更新されました。" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "配信設定が更新されました。" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "パスを指定する必要があります" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoapに問題があります。" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s は見つかりませんでした。" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "問題が生じました。" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "プレイリストに追加" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "スマートブロックに追加" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "ダウンロード" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "プレイリストのコピー" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "実行可能な操作はありません。" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "選択した項目を削除する権限がありません。" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "%sのコピー" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "このリソースへのアクセスは許可されていません。" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "このリソースへのアクセスは許可されていません。" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Bad Request:パスした「mode」パラメータはありません。" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Bad Request:'mode' パラメータが無効です。" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "%sの古いバージョンを閲覧しています。" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "自動生成スマート・ブロックにトラックを追加することはできません。" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "選択された%sを削除する権限がありません。" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "スマートブロックに追加できるのはトラックのみです。" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "無題のプレイリスト" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "無題のスマートブロック" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "不明なプレイリスト" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "録音中:" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "マスターストリーム" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "ライブ配信" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "何も予約されていません。" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "現在の番組:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "Now Playing" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "最新バージョンを使用しています。" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "新しいバージョンがあります:" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "現在のプレイリストに追加" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "現在のスマートブロックに追加" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "1個の項目を追加" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr " %s個の項目を追加" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "スマートブロックに追加できるのはトラックのみです。" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "タイムライン上のカーソル位置を選択して下さい。" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "編集" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "メタデータの編集" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "選択した番組へ追加" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "選択" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "このページを選択" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "このページを選択解除" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "全てを選択解除" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "選択した項目を削除してもよろしいですか?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "配信予約済み" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "ビットレート" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM " - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "作曲者" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "コンダクター" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "エンコード" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "最終修正" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "最終配信日" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "MIMEタイプ" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "ムード" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "所有者" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "リプレイゲイン" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "サンプルレート" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "トラック番号" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "アップロード完了" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "ウェブサイト" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "年" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "ロード中…" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "ファイル" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "ウェブ配信" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "種類不明:" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "選択した項目を削除してもよろしいですか?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "アップロード中…" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "サーバーからデータを取得しています…" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "エラーコード:" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "エラーメッセージ:" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "0より大きい半角数字で入力して下さい。" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "半角数字で入力して下さい。" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "yyyy-mm-ddの形で入力して下さい。" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "01:22:33.4の形式で入力して下さい。" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "メディアビルダーを開く" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "時間は01:22:33(.4)の形式で入力して下さい。" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "お使いのブラウザはこのファイル形式の再生に対応していません:" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "自動生成スマート・ブロックはプレビューできません" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "次の値に制限:" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "プレイリストが保存されました。" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "プレイリストがシャッフルされました。" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "%sのリスナー視聴数:%s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "1週間前に通知" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "通知しない" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Rakuten.FMを支援します" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "画像は、jpg, jpeg, png, または gif の形式にしてください。" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "スマートブロックがシャッフルされました。" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "スマートブロックが生成されて基準が保存されました。" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "スマートブロックを保存しました。" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "処理中…" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "条件を選択してください" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "以下を含む" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "以下を含まない" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "以下と一致する" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "以下と一致しない" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "以下で始まる" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "以下で終わる" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "次の値より大きい" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "次の値より小さい" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "次の範囲内" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "生成" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "フォルダを選択してください。" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "同期するフォルダを選択" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "同期されているフォルダを削除してもよろしいですか?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "このパスは現在アクセス不可能です。" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "ストリーミングサーバーに接続しています。" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "配信が切断されています。" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "サーバーから情報を取得しています…" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "ストリーミングサーバーに接続できません。" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "注意:番組の配信中にこの項目は変更できません。" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "結果は見つかりませんでした。" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "この番組に対してのみ有効なカスタム認証を指定してください。" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "この番組の配信回が存在しません。" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "注意:番組は再度リンクできません。" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "番組" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "番組内容がありません。" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1分" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5分" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10分" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15分" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30分" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60分" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "サーバーからデータを取得しています…" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "この番組には予約されているコンテンツがありません。" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "この番組はコンテンツが足りていません。" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "1月" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "2月" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "3月" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "4月" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "5月" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "6月" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "7月" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "8月" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "9月" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "10月" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "11月" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "12月" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "1月" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "2月" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "3月" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "4月" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "6月" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "7月" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "8月" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "9月" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "10月" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "11月" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "12月" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "日曜日" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "月曜日" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "火曜日" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "水曜日" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "木曜日" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "金曜日" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "土曜日" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "日" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "月" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "火" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "水" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "木" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "金" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "土" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "現在の番組をキャンセルしますか?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "配信中の番組の録音を中止しますか?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "Ok" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "番組内容" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "全てのコンテンツを削除しますか?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "選択した項目を削除しますか?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "終了" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "長さ" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "番組内容がありません。" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "ライン入力から録音" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "試聴する" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "番組外に予約することは出来ません。" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "1個の項目を移動" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "%s 個の項目を移動" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "フェードの編集" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "キューの編集" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "全て選択" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "全て解除" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "選択した項目を削除" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "現在再生中のトラックに移動" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "配信中の番組をキャンセル" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "ライブラリを開いてコンテンツを追加・削除する" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "コンテンツの追加・削除" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "ディスク" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "閲覧" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "開く" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "管理者" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DJ" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "プログラムマネージャー" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "ゲスト" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "ゲストは以下の操作ができます:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "スケジュールを見る" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "番組内容を見る" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "DJは以下の操作ができます:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "割り当てられた番組内容を管理" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "メディアファイルをインポートする" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "プレイリスト・スマートブロック・ウェブストリームを作成" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "ライブラリのコンテンツを管理" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "番組内容の表示と管理" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "番組を予約する" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "ライブラリの全てのコンテンツを管理" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "管理者は次の操作が可能です:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "設定を管理" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "ユーザー管理" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "同期されているフォルダを管理" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "サポートにフィードバックを送る" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "システムステータスを見る" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "配信レポートへ" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "リスナー統計を確認" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "表示設定" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "{from}から{to}へ" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "kbps" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "kHz" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "日" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "月" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "火" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "水" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "木" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "金" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "土" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "時" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "分" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "完了" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "ファイルを選択" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "ファイルを追加" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "アップロード中止" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "アップロード開始" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "ファイルを追加" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d ファイルをアップロードしました。" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "N/A" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "こちらにファイルをドラッグしてください。" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "ファイル拡張子エラーです。" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "ファイルサイズエラーです。" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "ファイルカウントのエラーです。" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "Initエラーです。" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "HTTPエラーです。" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "セキュリティエラーです。" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "エラーです。" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "入出力エラーです。" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "ファイル: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d のファイルが待機中" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "アップロードURLに誤りがあるか存在しません。" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "エラー:ファイルサイズが大きすぎます。" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "エラー:ファイル拡張子が無効です。" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "エントリーを作成" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "配信履歴を編集" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s 列の%s をクリップボードにコピー しました。" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "有効" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "無効" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "%sの再配信:%s %s時" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "録音ファイルは存在しません。" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "録音ファイルのメタデータを確認" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "番組の編集" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "許可されていない操作です。" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "定期配信している番組を移動することはできません。" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "過去の番組を移動することはできません。" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "番組を過去の日付に移動することはできません。" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "番組を重複して予約することはできません。" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "録音された番組を再配信時間の直前1時間の枠に移動することはできません。" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "録音された番組が存在しないので番組は削除されました。" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "再配信には1時間待たなければなりません。" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "トラック" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "開始時間" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "終了時間" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "再生済み" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "基準を選択してください" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "ビットレート (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "サンプリング周波数 (kHz) " - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "時間" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "分" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "項目" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "自動生成スマート・ブロック" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "スマート・ブロック" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "プレイリストコンテンツを生成し、基準を保存" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "プレイリストの内容をシャッフル" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "制限は空欄または0以下には設定できません。" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "制限は24時間以内に設定してください。" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "値は整数である必要があります。" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "設定できるアイテムの最大数は500です。" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "「基準」と「条件」を選択してください。" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "「長さ」は、'00:00:00'の形式で入力してください。" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "値は数字である必要があります。" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "値は2147483648未満にする必要があります。" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "値は%s未満にする必要があります。" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "値を入力してください。" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC番号:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "インポートフォルダ:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "同期フォルダ:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "正しいディレクトリではありません。" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "配信内容を同期する:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "リピート形式:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "毎週" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "2週間ごと" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "3週間ごと" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "4週間ごと" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "毎月" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "曜日を選択:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "リピート間隔:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "毎月特定日" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "毎月特定曜日" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "終了日:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "無期限" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "終了日は開始日より後に設定してください。" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "繰り返す日を選択してください" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "値を入力してください" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%'は、'01:22'の形式に適合していません" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "タイムゾーン:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "定期番組に設定" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "過去の日付に番組は作成できません。" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "終了日時は過去に設定できません。" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "0分以下の長さに設定することはできません。" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "00h 00mの長さに設定することはできません。" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "24時間を越える長さに設定することはできません。" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "ユーザー名:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "パスワード:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "確認用パスワード:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "名:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "姓:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "メール:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "携帯電話:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "ユーザー種別:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "ログイン名はすでに使用されています。" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "カスタム認証を使用:" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "カスタムユーザー名" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "カスタムパスワード" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "ユーザー名を入力してください。" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "パスワードを入力してください。" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "ステーションのタイムゾーン" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "開始日:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "使用できない文字が入力されました。" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "ユーザーを検索:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "全ての番組:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "背景色:" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "文字色:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "日付を指定する必要があります。" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "時間を指定する必要があります。" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "再配信するには、1時間以上待たなければなりません" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "無題の番組" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "ステーション名" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "ステーションロゴ:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "クロスフェードの時間(初期値):" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "デフォルトフェードイン(初期値):" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "デフォルトフェードアウト(初期値):" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "週の開始曜日" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "ライン入力から録音" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "再配信" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "数値で入力してください。" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "パスワード" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "新しいパスワードを確認してください。" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "パスワード確認がパスワードと一致しません。" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "日" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "有効:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "配信種別:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "サービスタイプ:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "再生方式" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - モノラル" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - ステレオ" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "サーバー" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "ポート" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "マウントポイント" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "管理者" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "管理者パスワード" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "サーバーを入力してください。" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "ポートを入力してください。" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "インターフェイスのタイムゾーン:" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%'は、'%format%'の日付形式に一致しません。" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%'は、%min%文字より短くなっています。" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%'は、%max%文字を越えています。" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "パスワードが一致しません。" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbisメタデータ" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "配信表示設定:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "アーティスト - タイトル" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "番組 - アーティスト - タイトル" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "ステーション名 - 番組名" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "オフエアーメタデータ" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "リプレイゲインを有効化" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "リプレイゲイン調整" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "%s年は、1753 - 9999の範囲内である必要があります。" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%sは正しい日付ではありません。" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%sは正しい時間ではありません。" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "キューインとキューアウトが設定されていません。" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "キューインをキューアウトより大きく設定することはできません。" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "キューアウトはファイルの長さより長く設定できません。" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "キューアウトをキューインより小さく設定することはできません。" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "再生時間は0分以上である必要があります。" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "時間は \"00h 00m\"の形式にしてください。" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL は\"http://domain\"の形式で入力してください。" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URLは512文字以下にしてください。" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "ウェブ配信用のMIMEタイプは見つかりませんでした。" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "ウェブ配信名を入力して下さい。" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "XSPFプレイリストを解析できませんでした。" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "PLSプレイリストを解析できませんでした。" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "M3Uプレイリストを解析できませんでした。" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "無効なウェブ配信です。" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "不明な配信種別です: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "%sの再配信%sから" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "国の選択" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "リンクした番組の外に項目を移動することはできません。" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "参照中のスケジュールはの有効ではありません。" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "参照中のスケジュールは有効ではありません。" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "参照中のスケジュールは有効ではありません。" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "番組を%sに予約することはできません。" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "録音中の番組にファイルを追加することはできません。" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "番組 %s は終了しておりスケジュールに入れることができません。" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "番組 %s は以前に更新されています。" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "選択したファイルは存在しません。" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%sは同期済みです。" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%sは同期している次のフォルダを含んでいます: %s " - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%sは同期している次のフォルダに含まれています: %s " - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%sは有効なディレクトリではありません。" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%sは同期リストの中に存在しません。" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "番組は最大24時間まで設定可能です。" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" -"番組を重複して予約することはできません。\n" -"注意:再配信番組のサイズ変更は全ての再配信に反映されます。" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "カレンダー" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "ユーザー" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "配信設定" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "配信履歴のテンプレート" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "リスナー統計" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "はじめに" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "ユーザーマニュアル" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" - -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Rakuten.FMがあなたの条件に一致するトラックを十分に見つけることができない場合、ご希望のブロック時間になりません。スマートブロックに同じトラックを複数回追加できるようにしたい場合は、このオプションを有効にしてください。" - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Rakuten.FMがルータやファイアウォールで制御されている場合は、ポート転送を設定する必要があり、このフィールドの情報が不正確になる可能性があります。その場合は、DJの接続に必須の正しいホスト/ポート/マウントを示し、手動でこのフィールドを更新する必要があります。許容範囲は1024〜49151の間です。" - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "詳細については、 %sRakuten.FM マニュアル%sを読んで下さい。" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "プログラムマネージャーは以下の操作が可能です:" - -#~ msgid "Support setting updated." -#~ msgstr "サポート設定が更新されました。" - -#~ msgid "Support Feedback" -#~ msgstr "サポートフィードバック" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "下記画像の中に見える文字を入力してください。" - -#~ msgid "Phone:" -#~ msgstr "電話:" - -#~ msgid "Station Web Site:" -#~ msgstr "ステーションのウェブサイト:" - -#~ msgid "Country:" -#~ msgstr "国:" - -#~ msgid "City:" -#~ msgstr "市:" - -#~ msgid "Station Description:" -#~ msgstr "ステーションの説明:" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "プライバシーポリシーに同意する必要があります。" - -#~ msgid "Default License:" -#~ msgstr "ライセンス(初期値):" - -#~ msgid "All rights are reserved" -#~ msgstr "All rights are reserved" - -#~ msgid "The work is in the public domain" -#~ msgstr "The work is in the public domain" - -#~ msgid "Creative Commons Attribution" -#~ msgstr "Creative Commons Attribution" - -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - -#~ msgid "Creative Commons Attribution No Derivative Works" -#~ msgstr "Creative Commons Attribution No Derivative Works" - -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" - -#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#~ msgid "Creative Commons Attribution Noncommercial Share Alike" -#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#~ msgid "Register Airtime" -#~ msgstr "Rakuten.FMに登録" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(確認目的の為だけであり、公開はされません。) " - -#~ msgid "Show me what I am sending " -#~ msgstr "送信中のものを表示" - -#~ msgid "Terms and Conditions" -#~ msgstr "利用規約" - -#~ msgid "files meet the criteria" -#~ msgstr "件の条件を満たすファイルがありました。" - -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(ステーションを宣伝するためには、「サポートフィードバックを送信する」の設定をオンにしておく必要があります。)" - -#~ msgid "Your trial expires in" -#~ msgstr "試用期間終了まで:" - -#~ msgid "This version will soon be obsolete." -#~ msgstr "新しいバージョンがあります。" - -#~ msgid "This version is no longer supported." -#~ msgstr "このバージョンのサポートは終了しました。" - -#~ msgid "Please upgrade to " -#~ msgstr "こちらにアップグレードしてください:" - -#~ msgid "please put in a time in seconds '00 (.0)'" -#~ msgstr "秒数は00 (.0)の形式で入力してください。" - -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "同期された配信内容を配信中に変更することはできません。" diff --git a/legacy/locale/ja_JP/LC_MESSAGES/libretime.po b/legacy/locale/ja_JP/LC_MESSAGES/libretime.po index 352df5a04..a2ea1bb04 100644 --- a/legacy/locale/ja_JP/LC_MESSAGES/libretime.po +++ b/legacy/locale/ja_JP/LC_MESSAGES/libretime.po @@ -1,5344 +1,3905 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: -# Daniel James , 2014 +# Akemi Makino , 2014 +# Kazuhiro Shimbo , 2014 +# shotaro , 2014 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2014-07-28 11:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/airtime/language/ja_JP/)\n" +"Language-Team: Japanese (Japan)\n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" +msgstr "%s年は、1753 - 9999の範囲内である必要があります。" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" -msgstr "" +msgstr "%s-%s-%sは正しい日付ではありません。" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%sは正しい時間ではありません。" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" " %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " msgstr "" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " msgstr "" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" msgstr "" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "カレンダー" -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" +#: application/configs/navigation.php:52 +msgid "Player" msgstr "" -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" +#: application/configs/navigation.php:80 +msgid "My Profile" msgstr "" -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "ユーザー" -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "配信設定" -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "ステータス" -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" +#: application/configs/navigation.php:114 +msgid "Analytics" msgstr "" -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "配信履歴" -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "配信履歴のテンプレート" -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "リスナー統計" -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" msgstr "" -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "ヘルプ" -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "はじめに" -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "ユーザーマニュアル" -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "このリソースへのアクセスは許可されていません。" -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "このリソースへのアクセスは許可されていません。" -#: legacy/application/models/Webstream.php:336 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" +msgid "File does not exist in %s" msgstr "" -#: legacy/application/models/ShowBuilder.php:209 +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Bad Request:パスした「mode」パラメータはありません。" + +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Bad Request:'mode' パラメータが無効です。" + +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "ソースを切断する権限がありません。" + +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "この入力に接続されたソースが存在しません。" + +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "ソースを切り替える権限がありません。" + +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "Rebroadcast of %s from %s" +msgid "%s Podcast" msgstr "" -#: legacy/application/models/Preference.php:643 -msgid "Select Country" +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." msgstr "" -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You are not allowed to schedule show %s." +msgid "%s not found" +msgstr "%s は見つかりませんでした。" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "問題が生じました。" + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "プレビュー" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "プレイリストに追加" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "スマートブロックに追加" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "削除" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." msgstr "" -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "ダウンロード" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "プレイリストのコピー" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" msgstr "" -#: legacy/application/models/Scheduler.php:157 +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "実行可能な操作はありません。" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "選択した項目を削除する権限がありません。" + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 #, php-format -msgid "The show %s is over and cannot be scheduled." +msgid "Copy of %s" +msgstr "%sのコピー" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "管理ユーザー・パスワードが正しいか、システム>配信のページで確認して下さい。" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "オーディオプレイヤー" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" msgstr "" -#: legacy/application/models/Scheduler.php:164 +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "録音中:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "マスターストリーム" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "ライブ配信" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "何も予約されていません。" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "現在の番組:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Now Playing" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "最新バージョンを使用しています。" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "新しいバージョンがあります:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "現在のプレイリストに追加" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "現在のスマートブロックに追加" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "1個の項目を追加" + +#: application/controllers/LocaleController.php:48 #, php-format -msgid "The show %s has been previously updated!" +msgid "Adding %s Items" +msgstr " %s個の項目を追加" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "スマートブロックに追加できるのはトラックのみです。" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "プレイリストに追加できるのはトラック・スマートブロック・ウェブ配信のみです。" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "タイムライン上のカーソル位置を選択して下さい。" + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" msgstr "" -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/models/MusicDir.php:160 +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "追加" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "編集" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "削除" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "メタデータの編集" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "選択した番組へ追加" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "選択" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "このページを選択" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "このページを選択解除" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "全てを選択解除" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "選択した項目を削除してもよろしいですか?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "配信予約済み" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "タイトル" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "アーティスト" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "アルバム" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "ビットレート" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM " + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "作曲者" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "コンダクター" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "著作権" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "エンコード" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "ジャンル" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "レーベル" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "言語" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "最終修正" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "最終配信日" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "時間" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "MIMEタイプ" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "ムード" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "所有者" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "リプレイゲイン" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "サンプルレート" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "トラック番号" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "アップロード完了" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "ウェブサイト" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "年" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "ロード中…" + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "全て" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "ファイル" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "プレイリスト" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "スマートブロック" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "ウェブ配信" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "種類不明:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "選択した項目を削除してもよろしいですか?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "アップロード中…" + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "サーバーからデータを取得しています…" + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "エラーコード:" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "エラーメッセージ:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "0より大きい半角数字で入力して下さい。" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "半角数字で入力して下さい。" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "yyyy-mm-ddの形で入力して下さい。" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "01:22:33.4の形式で入力して下さい。" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format -msgid "%s is already watched." +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "現在ファイルをアップロードしています。%s別の画面に移行するとアップロードプロセスはキャンセルされます。%sこのページを離れますか?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "メディアビルダーを開く" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "時間は01:22:33(.4)の形式で入力して下さい。" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/models/MusicDir.php:164 +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "お使いのブラウザはこのファイル形式の再生に対応していません:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "自動生成スマート・ブロックはプレビューできません" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "次の値に制限:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "プレイリストが保存されました。" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "プレイリストがシャッフルされました。" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "このファイルのステータスが不明です。これは、ファイルがアクセス不能な外付けドライブに存在するか、またはファイルが同期されていないディレクトリに存在する場合に起こります。" + +#: application/controllers/LocaleController.php:147 #, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" +msgid "Listener Count on %s: %s" +msgstr "%sのリスナー視聴数:%s" -#: legacy/application/models/MusicDir.php:168 +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "1週間前に通知" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "通知しない" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Rakuten.FMを支援します" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "画像は、jpg, jpeg, png, または gif の形式にしてください。" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "スマート・ブロックは基準を満たし、即時にブロック・コンテンツを生成します。これにより、コンテンツをショーに追加する前にライブラリーにおいてコンテンツを編集および閲覧できます。" + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "自動生成スマートブロックは基準の設定のみ操作できます。ブロックコンテンツは番組に追加するとすぐに生成されます。生成したコンテンツをライブラリ内で編集することはできません。" + +#: application/controllers/LocaleController.php:156 #, php-format -msgid "%s is nested within existing watched directory: %s" +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "スマートブロックがシャッフルされました。" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "スマートブロックが生成されて基準が保存されました。" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "スマートブロックを保存しました。" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "処理中…" + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "条件を選択してください" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "以下を含む" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "以下を含まない" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "以下と一致する" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "以下と一致しない" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "以下で始まる" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "以下で終わる" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "次の値より大きい" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "次の値より小さい" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "次の範囲内" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "生成" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "フォルダを選択してください。" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "同期するフォルダを選択" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "保存先のフォルダを変更しますか?Rakuten.FMライブラリからファイルを削除することになります!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "メディアフォルダの管理" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "同期されているフォルダを削除してもよろしいですか?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "このパスは現在アクセス不可能です。" + +#: application/controllers/LocaleController.php:181 #, php-format -msgid "%s is not a valid directory." -msgstr "" +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "配信種別の中には追加の設定が必要なものがあります。詳細設定を行うと%sAAC+ Support%s または %sOpus Support%sが可能になります。" -#: legacy/application/models/MusicDir.php:232 +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "ストリーミングサーバーに接続しています。" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "配信が切断されています。" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "サーバーから情報を取得しています…" + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "ストリーミングサーバーに接続できません。" + +#: application/controllers/LocaleController.php:186 #, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/models/MusicDir.php:388 +#: application/controllers/LocaleController.php:187 #, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." +msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/models/MusicDir.php:431 +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "このオプションをチェックしてOGGストリームのメタデータを有効にしてください(ストリームメタデータとは、トラックタイトル、アーティスト、オーディオプレーヤーに表示される名前のことです)。メタデータ情報を有効にしてOGG/ Vorbisのストリームを再生すると、VLCとmplayerはすべての曲を再生した後にストリームから切断される重大なバグを発生させます。OGGストリームを使用していて、リスナーがこれらのオーディオプレーヤーのためのサポートを必要としない場合は、このオプションを有効にして下さい。" + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "このボックスにチェックを入れると、ソースが切断された時に番組ソースに自動的に切り替わります。" + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "このボックスをクリックすると、ソースが接続された時にマスターソースに自動的に切り替わります。" + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr " Icecastサーバーから ソースのユーザー名を要求された場合、このフィールドは空白にすることができます。" + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "ライブ配信クライアントでユーザー名を要求されなかった場合、このフィールドはソースとなります。" + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr " Icecast/SHOUTcastでリスナー統計を参照するためのユーザー名とパスワードです。" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "注意:番組の配信中にこの項目は変更できません。" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "結果は見つかりませんでした。" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "番組と同様のセキュリティーパターンを採用します。番組を割り当てられているユーザーのみ接続することができます。" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "この番組に対してのみ有効なカスタム認証を指定してください。" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "この番組の配信回が存在しません。" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "注意:番組は再度リンクできません。" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "配信内容を同期すると、配信内容の変更が対応するすべての再配信にも反映されます。" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "タイムゾーンは初期設定ではステーション所在地に合わせて設定されています。タイムゾーンを変更するには、ユーザー設定からインターフェイスのタイムゾーンを変更して下さい。" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "番組" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "番組内容がありません。" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1分" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5分" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10分" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15分" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30分" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60分" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "サーバーからデータを取得しています…" + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "この番組には予約されているコンテンツがありません。" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "この番組はコンテンツが足りていません。" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "1月" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "2月" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "3月" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "4月" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "5月" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "6月" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "7月" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "8月" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "9月" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "10月" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "11月" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "12月" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "1月" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "2月" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "3月" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "4月" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "6月" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "7月" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "8月" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "9月" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "10月" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "11月" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "12月" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "日曜日" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "月曜日" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "火曜日" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "水曜日" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "木曜日" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "金曜日" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "土曜日" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "日" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "月" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "火" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "水" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "木" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "金" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "土" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "番組が予約された時間より長くなった場合はカットされ、次の番組が始まります。" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "現在の番組をキャンセルしますか?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "配信中の番組の録音を中止しますか?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "Ok" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "番組内容" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "全てのコンテンツを削除しますか?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "選択した項目を削除しますか?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "開始" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "終了" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "長さ" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "キューイン" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "キューアウト" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "フェードイン" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "フェードアウト" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "番組内容がありません。" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "ライン入力から録音" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "試聴する" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "番組外に予約することは出来ません。" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "1個の項目を移動" + +#: application/controllers/LocaleController.php:301 #, php-format -msgid "%s doesn't exist in the watched list." +msgid "Moving %s Items" +msgstr "%s 個の項目を移動" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "保存" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "キャンセル" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "フェードの編集" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "キューの編集" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "波形表示機能はWeb Audio APIに対応するブラウザで利用できます。" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "全て選択" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "全て解除" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" msgstr "" -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "選択した項目を削除" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "現在再生中のトラックに移動" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "配信中の番組をキャンセル" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "ライブラリを開いてコンテンツを追加・削除する" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "コンテンツの追加・削除" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "使用中" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "ディスク" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "閲覧" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "開く" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "管理者" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "プログラムマネージャー" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "ゲスト" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "ゲストは以下の操作ができます:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "スケジュールを見る" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "番組内容を見る" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJは以下の操作ができます:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "割り当てられた番組内容を管理" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "メディアファイルをインポートする" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "プレイリスト・スマートブロック・ウェブストリームを作成" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "ライブラリのコンテンツを管理" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "番組内容の表示と管理" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "番組を予約する" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "ライブラリの全てのコンテンツを管理" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "管理者は次の操作が可能です:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "設定を管理" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "ユーザー管理" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "同期されているフォルダを管理" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "サポートにフィードバックを送る" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "システムステータスを見る" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "配信レポートへ" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "リスナー統計を確認" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "表示設定" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "{from}から{to}へ" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "日" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "月" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "火" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "水" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "木" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "金" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "土" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "閉じる" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "時" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "分" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "完了" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "ファイルを選択" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "ファイルを追加して「アップロード開始」ボタンをクリックして下さい。" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "ファイルを追加" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "アップロード中止" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "アップロード開始" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "ファイルを追加" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d ファイルをアップロードしました。" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "N/A" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "こちらにファイルをドラッグしてください。" + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "ファイル拡張子エラーです。" + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "ファイルサイズエラーです。" + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "ファイルカウントのエラーです。" + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "Initエラーです。" + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "HTTPエラーです。" + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "セキュリティエラーです。" + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "エラーです。" + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "入出力エラーです。" + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "ファイル: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d のファイルが待機中" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "ファイル: %f, サイズ: %s, ファイルサイズ最大: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "アップロードURLに誤りがあるか存在しません。" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "エラー:ファイルサイズが大きすぎます。" + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "エラー:ファイル拡張子が無効です。" + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "初期設定として保存" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "エントリーを作成" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "配信履歴を編集" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "番組はありません。" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s 列の%s をクリップボードにコピー しました。" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%s印刷用表示%sお使いのブラウザの印刷機能を使用してこの表を印刷してください。印刷が完了したらEscボタンを押して下さい。" + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "説明" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "有効" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "無効" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "メールが送信できませんでした。メールサーバーの設定を確認してください。" + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "入力されたユーザー名またはパスワードが誤っています。" + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "%sの古いバージョンを閲覧しています。" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "自動生成スマート・ブロックにトラックを追加することはできません。" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "選択された%sを削除する権限がありません。" + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "スマートブロックに追加できるのはトラックのみです。" + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "無題のプレイリスト" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "無題のスマートブロック" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "不明なプレイリスト" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "設定が更新されました。" + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "配信設定が更新されました。" + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "パスを指定する必要があります" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Liquidsoapに問題があります。" + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "%sの再配信:%s %s時" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "カーソルを選択" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "カーソルを削除" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "番組が存在しません。" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "ユーザーの追加に成功しました。" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "ユーザーの更新に成功しました。" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "設定の更新に成功しました。" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "無題のウェブ配信" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "ウェブ配信が保存されました。" + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "入力欄に無効な値があります。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "使用できない文字が入力されました。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "日付を指定する必要があります。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "時間を指定する必要があります。" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "再配信するには、1時間以上待たなければなりません" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "カスタム認証を使用:" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "カスタムユーザー名" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "カスタムパスワード" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "ユーザー名を入力してください。" + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "パスワードを入力してください。" + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "ライン入力から録音" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "再配信" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "日" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "配信内容を同期する:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "リピート形式:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "毎週" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "2週間ごと" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "3週間ごと" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "4週間ごと" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "毎月" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "曜日を選択:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "リピート間隔:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "毎月特定日" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "毎月特定曜日" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "終了日:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "無期限" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "終了日は開始日より後に設定してください。" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "繰り返す日を選択してください" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "背景色:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "文字色:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "名前:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "無題の番組" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "ジャンル:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "説明:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%'は、'01:22'の形式に適合していません" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "長さ:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "タイムゾーン:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "定期番組に設定" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "過去の日付に番組は作成できません。" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "終了日時は過去に設定できません。" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "0分以下の長さに設定することはできません。" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "00h 00mの長さに設定することはできません。" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "24時間を越える長さに設定することはできません。" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "番組を重複して予約することはできません。" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "ユーザーを検索:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "ユーザー名:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "パスワード:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "確認用パスワード:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "名:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "姓:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "メール:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "携帯電話:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "ユーザー種別:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "ログイン名はすでに使用されています。" + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "開始日:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "タイトル:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "アーティスト:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "アルバム:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "年:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "ラベル:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "作曲者" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "コンダクター:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "ムード:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "著作権:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC番号:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "ウェブサイト:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "言語:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "開始時間" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "終了時間" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "インターフェイスのタイムゾーン:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "ステーション名" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "ステーションロゴ:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。" + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "クロスフェードの時間(初期値):" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "デフォルトフェードイン(初期値):" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "デフォルトフェードアウト(初期値):" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "ステーションのタイムゾーン" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "週の開始曜日" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "数値で入力してください。" + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "ログイン" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "パスワード" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "新しいパスワードを確認してください。" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "パスワード確認がパスワードと一致しません。" + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "ユーザー名" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "全ての番組:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "基準を選択してください" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "ビットレート (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "サンプリング周波数 (kHz) " + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "時間" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "分" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "項目" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "自動生成スマート・ブロック" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "スマート・ブロック" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "プレイリストコンテンツを生成し、基準を保存" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "プレイリストの内容をシャッフル" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "シャッフル" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "制限は空欄または0以下には設定できません。" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "制限は24時間以内に設定してください。" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "値は整数である必要があります。" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "設定できるアイテムの最大数は500です。" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "「基準」と「条件」を選択してください。" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "「長さ」は、'00:00:00'の形式で入力してください。" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "値は数字である必要があります。" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "値は2147483648未満にする必要があります。" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "値は%s未満にする必要があります。" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "値を入力してください。" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbisメタデータ" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "配信表示設定:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "アーティスト - タイトル" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "番組 - アーティスト - タイトル" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "ステーション名 - 番組名" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "オフエアーメタデータ" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "リプレイゲインを有効化" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "リプレイゲイン調整" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "有効:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "配信種別:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "ビットレート:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "サービスタイプ:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "再生方式" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - モノラル" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - ステレオ" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "サーバー" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "ポート" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "名前" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "マウントポイント" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "管理者" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "管理者パスワード" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "サーバーを入力してください。" + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "ポートを入力してください。" + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "インポートフォルダ:" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "同期フォルダ:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "正しいディレクトリではありません。" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "値を入力してください" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%'は、'%format%'の日付形式に一致しません。" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%'は、%min%文字より短くなっています。" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%'は、%max%文字を越えています。" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "パスワードが一致しません。" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5346,7 +3907,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5354,7 +3915,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5363,94 +3924,733 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "キューインとキューアウトが設定されていません。" + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "キューアウトはファイルの長さより長く設定できません。" + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "キューインをキューアウトより大きく設定することはできません。" + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "キューアウトをキューインより小さく設定することはできません。" + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%sは同期済みです。" + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%sは同期している次のフォルダを含んでいます: %s " + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%sは同期している次のフォルダに含まれています: %s " + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%sは有効なディレクトリではありません。" + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%sはすでに保存ディレクトリまたは同期フォルダに設定されています。" + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%sは同期リストの中に存在しません。" + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "国の選択" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "リンクした番組の外に項目を移動することはできません。" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "参照中のスケジュールはの有効ではありません。" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "参照中のスケジュールは有効ではありません。" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "参照中のスケジュールは有効ではありません。" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "番組を%sに予約することはできません。" + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "録音中の番組にファイルを追加することはできません。" + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "番組 %s は終了しておりスケジュールに入れることができません。" + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "番組 %s は以前に更新されています。" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" msgstr "" -#: legacy/application/models/Show.php:331 +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "選択したファイルは存在しません。" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "番組は最大24時間まで設定可能です。" + +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." msgstr "" +"番組を重複して予約することはできません。\n" +"注意:再配信番組のサイズ変更は全ての再配信に反映されます。" -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "%sの再配信%sから" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "再生時間は0分以上である必要があります。" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "時間は \"00h 00m\"の形式にしてください。" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL は\"http://domain\"の形式で入力してください。" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URLは512文字以下にしてください。" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "ウェブ配信用のMIMEタイプは見つかりませんでした。" + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "ウェブ配信名を入力して下さい。" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "XSPFプレイリストを解析できませんでした。" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "PLSプレイリストを解析できませんでした。" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "M3Uプレイリストを解析できませんでした。" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "無効なウェブ配信です。" + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "不明な配信種別です: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "録音ファイルは存在しません。" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "録音ファイルのメタデータを確認" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "番組の編集" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "許可されていない操作です。" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "定期配信している番組を移動することはできません。" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "過去の番組を移動することはできません。" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "番組を過去の日付に移動することはできません。" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "録音された番組を再配信時間の直前1時間の枠に移動することはできません。" + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "録音された番組が存在しないので番組は削除されました。" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "再配信には1時間待たなければなりません。" + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "トラック" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "再生済み" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" + +#~ msgid " to " +#~ msgstr "~" + +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(ステーションを宣伝するためには、「サポートフィードバックを送信する」の設定をオンにしておく必要があります。)" + +#~ msgid "(Required)" +#~ msgstr "(必須)" + +#~ msgid "(Your radio station website)" +#~ msgstr "(あなたのラジオステーションウェブサイト)" + +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(確認目的の為だけであり、公開はされません。) " + +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "例:01:22:33.4" + +#~ msgid "(ss.t)" +#~ msgstr "(ss.t) " + +#~ msgid "About" +#~ msgstr "Rakuten.FMについて" + +#~ msgid "Add New Field" +#~ msgstr "あたしいフィールドの追加" + +#~ msgid "Add more elements" +#~ msgstr "さらに要素を追加" + +#~ msgid "Add this show" +#~ msgstr "この番組を追加" + +#~ msgid "Additional Options" +#~ msgstr "詳細設定" + +#~ msgid "Advanced Search Options" +#~ msgstr "詳細検索" + +#~ msgid "All rights are reserved" +#~ msgstr "All rights are reserved" + +#~ msgid "Audio Track" +#~ msgstr "オーディオトラック" + +#~ msgid "Choose Days:" +#~ msgstr "日付選択: " + +#~ msgid "Choose Show Instance" +#~ msgstr "番組配信回の選択" + +#~ msgid "Choose folder" +#~ msgstr "フォルダ選択" + +#~ msgid "City:" +#~ msgstr "市:" + +#~ msgid "Clear" +#~ msgstr "クリア" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "同期された配信内容を配信中に変更することはできません。" + +#~ msgid "Country:" +#~ msgstr "国:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "トラック別レポートテンプレート作成" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "配信レポートテンプレートの作成" + +#~ msgid "Creative Commons Attribution" +#~ msgstr "Creative Commons Attribution" + +#~ msgid "Creative Commons Attribution No Derivative Works" +#~ msgstr "Creative Commons Attribution No Derivative Works" + +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" + +#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" + +#~ msgid "Creative Commons Attribution Noncommercial Share Alike" +#~ msgstr "Creative Commons Attribution Noncommercial Share Alike" + +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "キューイン:" + +#~ msgid "Cue Out: " +#~ msgstr "キューアウト:" + +#~ msgid "Current Import Folder:" +#~ msgstr "現在のインポートフォルダ" + +#~ msgid "Cursor" +#~ msgstr "カーソル" + +#~ msgid "Default Length:" +#~ msgstr "ウェブ配信の長さ(初期値):" + +#~ msgid "Default License:" +#~ msgstr "ライセンス(初期値):" + +#~ msgid "Disk Space" +#~ msgstr "ディスク容量" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "自動生成スマート・ブロック" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "自動生成スマート・ブロックの基準:" + +#~ msgid "Empty playlist content" +#~ msgstr "プレイリストを空にする。" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "自動生成スマート・ブロックを拡張する" + +#~ msgid "Expand Static Block" +#~ msgstr "スマート・ブロックの拡張" + +#~ msgid "Fade in: " +#~ msgstr "フェードイン:" + +#~ msgid "Fade out: " +#~ msgstr "フェードアウト:" + +#~ msgid "File Path:" +#~ msgstr "ファイルの場所: " + +#~ msgid "File Summary" +#~ msgstr "トラック別レポート" + +#~ msgid "File Summary Templates" +#~ msgstr "トラック別レポートテンプレート" + +#~ msgid "File import in progress..." +#~ msgstr "ファイルをインポート中…" + +#~ msgid "Filter History" +#~ msgstr "絞り込み履歴" + +#~ msgid "Find" +#~ msgstr "検索" + +#~ msgid "Find Shows" +#~ msgstr "番組を探す" + +#~ msgid "First Name" +#~ msgstr "名" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "より詳細なヘルプは、%sユーザーマニュアル%sをお読み下さい。 " + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "詳細については、 %sRakuten.FM マニュアル%sを読んで下さい。" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Rakuten.FMがルータやファイアウォールで制御されている場合は、ポート転送を設定する必要があり、このフィールドの情報が不正確になる可能性があります。その場合は、DJの接続に必須の正しいホスト/ポート/マウントを示し、手動でこのフィールドを更新する必要があります。許容範囲は1024〜49151の間です。" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC番号:" + +#~ msgid "Last Name" +#~ msgstr "姓" + +#~ msgid "Length:" +#~ msgstr "時間:" + +#~ msgid "Limit to " +#~ msgstr "次の値に制限する:" + +#~ msgid "Listen" +#~ msgstr "試聴" + +#~ msgid "Live Stream Input" +#~ msgstr "ライブ配信の入力" + +#~ msgid "Live stream" +#~ msgstr "ライブ配信" + +#~ msgid "Log Sheet" +#~ msgstr "配信レポート" + +#~ msgid "Log Sheet Templates" +#~ msgstr "配信レポートテンプレート" + +#~ msgid "Logout" +#~ msgstr "ログアウト" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "お探しのページは存在しないようです。" + +#~ msgid "Manage Users" +#~ msgstr "ユーザー管理" + +#~ msgid "Master Source" +#~ msgstr "マスターソース" + +#~ msgid "New File Summary Template" +#~ msgstr "新規テンプレート作成" + +#~ msgid "New Log Sheet Template" +#~ msgstr "新規テンプレート作成" + +#~ msgid "New User" +#~ msgstr "ユーザー追加" + +#~ msgid "New password" +#~ msgstr "新しいパスワード" + +#~ msgid "Next:" +#~ msgstr "次の曲:" + +#~ msgid "No File Summary Templates" +#~ msgstr "テンプレートはありません。" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "テンプレートはありません。" + +#~ msgid "No open playlist" +#~ msgstr "プレイリストが開かれていません。" + +#~ msgid "No webstream" +#~ msgstr "ウェブ配信がありません。" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "オリジナルの長さ:" + +#~ msgid "Page not found!" +#~ msgstr "ページが見つかりませんでした。" + +#~ msgid "Phone:" +#~ msgstr "電話:" + +#~ msgid "Play" +#~ msgstr "再生" + +#~ msgid "Playlist Contents: " +#~ msgstr "プレイリストの内容:" + +#~ msgid "Playlist crossfade" +#~ msgstr "プレイリスト クロスフェード" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "下記のフィールドに新しいパスワードを入力し確認して下さい。" + +#~ msgid "Please upgrade to " +#~ msgstr "こちらにアップグレードしてください:" + +#~ msgid "Previous:" +#~ msgstr "前の曲:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "プログラムマネージャーは以下の操作が可能です:" + +#~ msgid "Register Airtime" +#~ msgstr "Rakuten.FMに登録" + +#~ msgid "Remove watched directory" +#~ msgstr "同期ディレクトリを削除する" + +#~ msgid "Repeat Days:" +#~ msgstr "再配信日:" + +#~ msgid "Sample Rate:" +#~ msgstr "サンプルレート:" + +#~ msgid "Save playlist" +#~ msgstr "プレイリストを保存" + +#~ msgid "Select stream:" +#~ msgstr "配信先の選択:" + +#~ msgid "Set" +#~ msgstr "設定" + +#~ msgid "Set Cue In" +#~ msgstr "キューインの設定" + +#~ msgid "Set Cue Out" +#~ msgstr "キューアウトの設定" + +#~ msgid "Set Default Template" +#~ msgstr "初期設定テンプレートを作成" + +#~ msgid "Share" +#~ msgstr "共有" + +#~ msgid "Show Source" +#~ msgstr "番組ソース" + +#~ msgid "Show Summary" +#~ msgstr "番組別レポート" + +#~ msgid "Show Waveform" +#~ msgstr "波形の表示" + +#~ msgid "Show me what I am sending " +#~ msgstr "送信中のものを表示" + +#~ msgid "Shuffle playlist" +#~ msgstr "プレイリストのシャッフル" + +#~ msgid "Source Streams" +#~ msgstr "配信ソース" + +#~ msgid "Static Smart Block" +#~ msgstr "スマート・ブロック" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "スマート・ブロックの内容:" + +#~ msgid "Station Description:" +#~ msgstr "ステーションの説明:" + +#~ msgid "Station Web Site:" +#~ msgstr "ステーションのウェブサイト:" + +#~ msgid "Stop" +#~ msgstr "停止" + +#~ msgid "Stream " +#~ msgstr "配信" + +#~ msgid "Stream Settings" +#~ msgstr "配信設定" + +#~ msgid "Stream URL:" +#~ msgstr "配信元URL:" + +#~ msgid "Stream URL: " +#~ msgstr "配信先URL:" + +#~ msgid "Style" +#~ msgstr "スタイル" + +#~ msgid "Support Feedback" +#~ msgstr "サポートフィードバック" + +#~ msgid "Support setting updated." +#~ msgstr "サポート設定が更新されました。" + +#~ msgid "Terms and Conditions" +#~ msgstr "利用規約" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Rakuten.FMがあなたの条件に一致するトラックを十分に見つけることができない場合、ご希望のブロック時間になりません。スマートブロックに同じトラックを複数回追加できるようにしたい場合は、このオプションを有効にしてください。" + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "以下の情報はリスナーが利用するプレイヤー上に表示されます。" + +#~ msgid "The work is in the public domain" +#~ msgstr "The work is in the public domain" + +#~ msgid "This version is no longer supported." +#~ msgstr "このバージョンのサポートは終了しました。" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "新しいバージョンがあります。" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "メディアを再生するためには、お使いのブラウザを最新のバージョンにアップデートするか、%sフラッシュプラグイン%sをアップデートする必要があります。" + +#~ msgid "Track:" +#~ msgstr "トラック:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "下記画像の中に見える文字を入力してください。" + +#~ msgid "Update Required" +#~ msgstr "アップデートが必要です。" + +#~ msgid "Update show" +#~ msgstr "番組を更新" + +#~ msgid "User Type" +#~ msgstr "ユーザー種別" + +#~ msgid "Web Stream" +#~ msgstr "ウェブ配信" + +#~ msgid "What" +#~ msgstr "番組内容" + +#~ msgid "When" +#~ msgstr "番組配信時間" + +#~ msgid "Who" +#~ msgstr "DJ" + +#~ msgid "You are not watching any media folders." +#~ msgstr "いかなるメディアフォルダも見ていません" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "プライバシーポリシーに同意する必要があります。" + +#~ msgid "Your trial expires in" +#~ msgstr "試用期間終了まで:" + +#~ msgid "and" +#~ msgstr "and" + +#~ msgid "dB" +#~ msgstr "dB " + +#~ msgid "files meet the criteria" +#~ msgstr "件の条件を満たすファイルがありました。" + +#~ msgid "id" +#~ msgstr "id " + +#~ msgid "max volume" +#~ msgstr "最大音量" + +#~ msgid "mute" +#~ msgstr "ミュート" + +#~ msgid "next" +#~ msgstr "次" + +#~ msgid "or" +#~ msgstr "or" + +#~ msgid "pause" +#~ msgstr "一時停止" + +#~ msgid "play" +#~ msgstr "再生" + +#~ msgid "please put in a time in seconds '00 (.0)'" +#~ msgstr "秒数は00 (.0)の形式で入力してください。" + +#~ msgid "previous" +#~ msgstr "前" + +#~ msgid "stop" +#~ msgstr "停止" + +#~ msgid "unmute" +#~ msgstr "ミュート解除" diff --git a/legacy/locale/ka/LC_MESSAGES/libretime.po b/legacy/locale/ka/LC_MESSAGES/libretime.po deleted file mode 100644 index bbb4629a6..000000000 --- a/legacy/locale/ka/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5458 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Georgian (http://www.transifex.com/sourcefabric/airtime/language/ka/)\n" -"Language: ka\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/ko_KR/LC_MESSAGES/libretime.po b/legacy/locale/ko_KR/LC_MESSAGES/libretime.po index e7372a7e5..020e47643 100644 --- a/legacy/locale/ko_KR/LC_MESSAGES/libretime.po +++ b/legacy/locale/ko_KR/LC_MESSAGES/libretime.po @@ -1,5347 +1,3903 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Korean (Korea) (http://www.transifex.com/sourcefabric/airtime/language/ko_KR/)\n" +"Language-Team: Korean (Korea)\n" "Language: ko_KR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "로그인" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "새 암호" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "새 암호 확인" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "방송 기록" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "미디어 폴더 관리" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "락스트림 설정" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "저장" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "스트림 " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(*)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "추가 설정" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "밑에 정보들은 청취자에 플래이어에 표시 됩니다:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(방송국 웹사이트 주소)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "스트림 URL: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " 부터 " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "폴더 선택" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "저장" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "현재 저장 폴더:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "추가" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "모니터중인 폴더를 리스트에서 삭제" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "모니터중인 폴더가 없습니다" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "날짜 선택" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "제거" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "반복 날짜:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "쇼 찾기" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "필터 히스토리" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "쇼 소스" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "마스터 소스" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "확인" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "사용자 관리" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "새 사용자" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "아이디" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "아이디" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "이름" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "성" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "사용자 유형" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "정적 블록 확장" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "동적 블록 확장" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "이름:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "설명:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "길이:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "재생 목록 셔플" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "셔플" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "재생 목록 크로스페이드" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "재생 목록 비우기" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "지우기" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "페이드 아웃:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "취소" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "재생 목록 저장" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "열린 재생 목록 없음" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "웨이브 폼 보기" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "페이드 인: " - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "큐 인:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "큐 아웃:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "오리지날 길이" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "사용중" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "전체" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "고급 검색 옵션" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "설명" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "스트림 URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "기본 길이:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "열린 웹스트림 없음" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "닫기" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "이름" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "제작자" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "언어" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "저작권" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "파일 가져오기 진행중" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "제목:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "제작자:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "앨범:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "트랙:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "길이:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "샘플 레이트:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "비트 레이트:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "무드" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "장르:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "년도:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "상표:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "작곡가:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "지휘자" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "저작권:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC 넘버:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "웹사이트" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "언어" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "파일 위치:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "웹스트림" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "동적 스마트 블록" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "정적 스마트 블록" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "오디오 트랙" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "재생목록 내용" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "정적 스마트 블록 내용: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "동적 스마트 블록 내용: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "길이 제한 " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "상태" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "디스크 공간" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "이전" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "재생" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "중지" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "다음" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "정지" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "음소거" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "음소거 해제" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "최대 음량 " - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "업데이트가 필요함" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "미디어를 재생하기 위해선, 브라우저를 최신 버젼으로 업데이트 하시고, %sFlash plugin%s도 업데이트 해주세요" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "정보" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "더 자세한 도움을 원하시면, 메뉴얼을 참고 하여 주세요. %suser manual%s" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "라이브 스트림" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "공유" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "스트림 선택" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "쇼 추가" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "쇼 업데이트" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "무엇" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "언제" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "라이브 스트림" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "누구" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "스타일" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "시작" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "제목" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "앨범" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "길이" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "장르" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "레이블" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "이전:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "다음:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "소스 스트림" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "방송중" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "듣기" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "로그아웃" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "재생 목록" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "스마트 블록" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "도움" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "페이지를 찾을수 없습니다!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "찾는 페이지가 존재 하지 않습니다!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "오디오 플레이어" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "재생" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "정지" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "큐 인" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "큐 아웃" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "큐 아웃 설정" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "커서" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "페이드 인" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "패이드 아웃" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "소스를 끊을수 있는 권한이 부족합니다" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "연결된 소스가 없습니다" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "소스를 바꿀수 있는 권한이 부족합니다" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "제목없는 웹스트림" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "웹스트림이 저장 되었습니다" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "잘못된 값입니다" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "사용자가 추가 되었습니다!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "사용자 정보가 업데이트 되었습니다!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "세팅이 성공적으로 업데이트 되었습니다!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "프리뷰" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "커서 선택" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "커서 제거" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "삭제" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "쇼가 존재 하지 않음" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "설정이 업데이트 되었습니다" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "스트림 설정이 업데이트 되었습니다" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "경로를 입력해주세요" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoap 문제..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s를 찾을수 없습니다" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "알수없는 에러." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "재생 목록에 추가" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "스마트 블록에 추가" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "다운로드" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "중복된 플레이 리스트" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "액션 없음" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "선택된 아이템을 지울수 있는 권한이 부족합니다." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "%s의 사본" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "권한이 부족합니다" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "권한이 부족합니다" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "오래된 %s를 보고 있습니다" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다." - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "스마트 블록에는 트랙만 추가 가능합니다" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "제목없는 재생목록" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "제목없는 스마트 블록" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "모르는 재생목록" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "녹음:" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "마스터 스트림" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "라이브 스트림" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "스케쥴 없음" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "현재 쇼:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "현재" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "최신 버전입니다." - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "새 버젼이 있습니다" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "현제 플레이리스트에 추가" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "현제 스마트 블록에 추가" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "아이템 1개 추가" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "아이템 %s개 추가" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "스마트 블록에는 파일만 추가 가능합니다" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "타임 라인에서 커서를 먼져 선택 하여 주세요." - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "수정" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "메타데이타 수정" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "선택된 쇼에 추가" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "선택" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "현재 페이지 선택" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "현재 페이지 선택 취소 " - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "모두 선택 취소" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "선택된 아이템들을 모두 지우시겠습니다?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "스케쥴됨" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "비트 레이트" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "작곡가" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "지휘자" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "마지막 수정일" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "마지막 방송일" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "무드" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "소유자" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "리플레이 게인" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "샘플 레이트" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "트랙 번호" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "업로드 날짜" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "웹싸이트" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "년도" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "로딩..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "파일" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "웹스트림" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "알수 없는 유형:" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "선택된 아이템을 모두 삭제 하시겠습니까?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "업로딩중..." - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "서버에서 정보를 가져오는중..." - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "에러 코드: " - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "에러 메세지: " - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "이 값은 0보다 큰 숫자만 허용 됩니다" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "이 값은 숫자만 허용합니다" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "yyyy-mm-dd의 형태로 입력해주세요" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "hh:mm:ss.t의 형태로 입력해주세요" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "미디아 빌더 열기" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "'00:00:00 (.0)' 형태로 입력해주세요" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: " - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "동적인 스마트 블록은 프리뷰 할수 없습니다" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "길이 제한: " - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "재생 목록이 저장 되었습니다" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "플레이 리스트가 셔플 되었습니다" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다." - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "%s의청취자 숫자 : %s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "1주후에 다시 알림" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "이 창을 다시 표시 하지 않음" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Airtime 도와주기" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 " - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다." - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "스마트 블록이 셔플 되었습니다" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "스마트 블록이 저장 되었습니다" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "진행중..." - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "모디파이어 선택" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "다음을 포합" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "다음을 포함하지 않는" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "다음과 같음" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "다음과 같지 않음" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "다음으로 시작" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "다음으로 끝남" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "다음 보다 큰" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "다음 보타 작은" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "다음 범위 안에 있는 " - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "생성" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "저장 폴더 선택" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "모니터 폴더 선택" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다." - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "경로에 접근할수 없습니다" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "스트리밍 서버에 접속됨" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "스트림이 사용되지 않음" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "서버에서 정보를 받는중..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "스트리밍 서버에 접속 할수 없음" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다." - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔." - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬." - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다." - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요." - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "결과 없음" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "쇼에 지정된 사람들만 접속 할수 있습니다" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "쇼 인스턴스가 존재 하지 않습니다" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "주의: 쇼는 다시 링크 될수 없습니다" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "쇼" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "쇼가 비어 있습니다" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1분" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5분" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10분" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15분" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30분" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60분" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "서버로부터 데이타를 불러오는중..." - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "내용이 없는 쇼입니다" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "쇼가 완전히 채워지지 않았습니다" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "1월" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "2월" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "3월" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "4월" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "5월" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "6월" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "7월" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "8월" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "9월" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "10월" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "11월" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "12월" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "1월" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "2월" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "3월" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "4월" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "6월" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "7월" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "8월" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "9월" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "10월" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "11월" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "12월" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "일요일" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "월요일" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "화요일" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "수요일" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "목요일" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "금요일" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "토요일" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "일" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "월" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "화" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "수" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "목" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "금" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "토" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "현재 방송중인 쇼를 중단 하시겠습니까?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "현재 녹음 중인 쇼를 중단 하시겠습니까?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "확인" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "쇼 내용" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "모든 내용물 삭제하시겠습까?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "선택한 아이템을 삭제 하시겠습니까?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "종료" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "길이" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "내용 없음" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "라인 인으로 부터 녹음" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "트랙 프리뷰" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "쇼 범위 밖에 스케쥴 할수 없습니다" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "아이템 1개 이동" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "아이템 %s개 이동" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "페이드 에디터" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "큐 에디터" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "전체 선택" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "전체 선택 취소" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "선택된 아이템 제거" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "현재 방송중인 트랙으로 가기" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "현재 쇼 취소" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "라이브러리 열기" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "내용 추가/제거" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "디스크" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "경로" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "열기" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "관리자" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "프로그램 매니저" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "손님" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "손님의 권한:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "스케쥴 보기" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "쇼 내용 보기" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "DJ의 권한:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "할당된 쇼의 내용 관리" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "미디아 파일 추가" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "플레이 리스트, 스마트 블록, 웹스트림 생성" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "자신의 라이브러리 내용 관리" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "쇼 내용 보기및 관리" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "쇼 스케쥴 하기" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "모든 라이브러리 내용 관리" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "관리자의 권한:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "설정 관리" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "사용자 관리" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "모니터 폴터 관리" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "사용자 피드백을 보냄" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "이시스템 상황 보기" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "방송 기록 접근 권한" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "청취자 통계 보기" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "컬럼 보이기/숨기기" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr " {from}부터 {to}까지" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "일" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "월" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "화" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "수" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "목" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "금" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "토" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "시" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "분" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "확인" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "파일 선택" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요." - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "파일 추가" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "업로드 중지" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "업로드 시작" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "파일 추가" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "%d/%d 파일이 업로드됨" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "파일을 여기로 드래그 앤 드랍 하세요" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "파일 확장자 에러." - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "파일 크기 에러." - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "파일 갯수 에러." - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "초기화 에러." - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "HTTP 에러." - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "보안 에러." - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "일반적인 에러." - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "IO 에러." - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "파일: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d개의 파일이 대기중" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "파일: %f, 크기: %s, 최대 파일 크기: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "업로드 URL이 맞지 않거나 존재 하지 않습니다" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "에러: 파일이 너무 큽니다:" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "에러: 지원하지 않는 확장자:" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "%s row %s를 클립보드로 복사 하였습니다" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "사용" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "미사용" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "%s의 재방송 %s부터 %s까지" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "녹음된 파일의 메타데이타 보기" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "쇼 수정" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "권한이 부족합니다" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "반복쇼는 드래그 앤 드롭 할수 없습니다" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "지난 쇼는 이동할수 없습니다" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "과거로 쇼를 이동할수 없습니다" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "쇼를 중복되게 스케쥴할수 없습니다" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "녹화 쇼가 없으로 쇼가 삭제 되었습니다" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 " - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "방송됨" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "기준 선택" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "비트 레이트(Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "샘플 레이트" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "시간" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "분" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "아이템" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "동적(Dynamic)" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "정적(Static)" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "재생 목록 내용 생성후 설정 저장" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "재생 목록 내용 셔플하기" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "길이 제한은 24h 보다 클수 없습니다" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "이 값은 정수(integer) 입니다" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "아이템 곗수의 최대값은 500 입니다" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "기준과 모디파이어를 골라주세요" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "길이는 00:00:00 형태로 입력하세요" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "이 값은 숫자만 허용 됩니다" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "이 값은 비어둘수 없습니다" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC 넘버" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "폴더 가져오기" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "모니터중인 폴더" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "옳치 않은 폴더 입니다" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "링크:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "반복 유형:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "주간" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "월간" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "날짜 선택" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "월중 날짜" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "주중 날짜" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "종료" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "무한 반복?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "종료 일이 시작일 보다 먼져 입니다." - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "이 필드는 비워둘수 없습니다." - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다." - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "시간대:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "반복?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "쇼를 과거에 생성 할수 없습니다" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "종료 날짜/시간을 과거로 설정할수 없습니다" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "길이가 0m 보다 작을수 없습니다" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "쇼의 길이가 24h를 넘을수 없습니다" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "아이디: " - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "암호: " - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "암호 확인:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "이름:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "성:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "이메일" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "휴대전화:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "스카입:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "유저 타입" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "사용할수 없는 아이디 입니다" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Custom 인증 사용" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom 아이디" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom 암호" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "아이디를 입력해주세요" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "암호를 입력해주세요" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "시작" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "허용되지 않는 문자입니다" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "사용자 검색:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ들:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "내 쇼:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "배경 색:" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "글자 색:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "날짜를 설정하세요" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "시간을 설정하세요" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "재방송 설정까지 1시간 기간이 필요합니다" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "이름없는 쇼" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "방송국 이름" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "방송국 로고" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "기본 크로스페이드 길이(s)" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "기본 페이드 인(s)" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "기본 페이드 아웃(s)" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "주 시작일" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Line In으로 녹음" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "재방송?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "암호 초기화" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "숫자만 허용 됩니다" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "암호" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "새 암호 확인" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "암호와 암호 확인 값이 일치 하지 않습니다." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "일" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "사용:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "스트림 타입:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "서비스 타입:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "채널:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - 모노" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - 스테레오" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "서버" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "포트" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "마운트 지점" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "관리자 아이디" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "관리자 암호" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "서버를 지정해주세요" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "포트를 지정해주세요" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "방송중" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%'은 맞지 않는 이메일 형식 입니다." - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다." - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%'는 %max%글자 보다 길수 없습니다" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다." - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "암호가 맞지 않습니다" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbis 메타데이타" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "스트림 레이블" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "아티스트 - 제목" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "쇼 - 아티스트 - 제목" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "방송국 이름 - 쇼 이름" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "오프 에어 메타데이타" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "리플레이 게인 활성화" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "리플레이 게인 설정" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" msgstr "년도 값은 %s 1753 - 9999 입니다" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" msgstr "%s-%s-%s는 맞지 않는 날짜 입니다" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" msgstr "%s:%s:%s는 맞지 않는 시간 입니다" -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" " %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " msgstr "" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " msgstr "" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" msgstr "" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "스케쥴" -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" +#: application/configs/navigation.php:52 +msgid "Player" msgstr "" -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" +#: application/configs/navigation.php:80 +msgid "My Profile" msgstr "" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "계정" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "스트림" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "상태" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" +#: application/configs/navigation.php:114 +msgid "Analytics" msgstr "" -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "방송 기록" -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" +#: application/configs/navigation.php:130 +msgid "History Templates" msgstr "" -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "청취자 통계" -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" msgstr "" -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "도움" -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "초보자 가이드" -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "사용자 메뉴얼" -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "권한이 부족합니다" -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "권한이 부족합니다" -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "큐-인 과 큐 -아웃 이 null 입니다" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "큐-인 값은 큐-아웃 값보다 클수 없습니다." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "큐-아웃 값은 파일 길이보다 클수 없습니다" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "큐-아웃 값은 큐-인 값보다 작을수 없습니다." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "길이가 0분 보다 길어야 합니다" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 " - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL은 \"http://domain\" 형태여야 합니다" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL은 512캐릭터 까지 허용합니다" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "웹 스트림의 MIME 타입을 찾을수 없습니다" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "웹스트림의 이름을 지정하십시오" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "XSPF 재생목록을 분석 할수 없습니다" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "PLS 재생목록을 분석 할수 없습니다" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "M3U 재생목록을 분석할수 없습니다" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다" - -#: legacy/application/models/Webstream.php:336 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" -msgstr "알수 없는 스트림 타입: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "%s 재방송( %s에 시작) " - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "국가 선택" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "링크 쇼에서 아이템을 분리 할수 없습니다" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "현재 보고 계신 스케쥴이 맞지 않습니다" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "쇼를 스케쥴 할수 있는 권한이 없습니다 %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "녹화 쇼에는 파일을 추가 할수 없습니다" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "쇼 %s 업데이트 되었습니다!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +msgid "File does not exist in %s" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." msgstr "" -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "선택하신 파일이 존재 하지 않습니다" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s는 이미 모니터 중입니다 " - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s는 이미 모니터중인 폴더를 포함하고 있습니다: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s를 포함하는 폴더를 이미 모니터 중입니다: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s는 옳은 경로가 아닙니다." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s가 모니터 목록에 없습니다" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "소스를 끊을수 있는 권한이 부족합니다" + +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "연결된 소스가 없습니다" + +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "소스를 바꿀수 있는 권한이 부족합니다" + +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 +#, php-format +msgid "%s not found" +msgstr "%s를 찾을수 없습니다" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "알수없는 에러." + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "프리뷰" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "재생 목록에 추가" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "스마트 블록에 추가" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "삭제" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "다운로드" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "중복된 플레이 리스트" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "액션 없음" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "선택된 아이템을 지울수 있는 권한이 부족합니다." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "%s의 사본" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "시스템->스트림 에서 관리자 아이디/암호를 다시 확인하세요." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "오디오 플레이어" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "녹음:" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "마스터 스트림" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "라이브 스트림" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "스케쥴 없음" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "현재 쇼:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "현재" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "최신 버전입니다." + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "새 버젼이 있습니다" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "현제 플레이리스트에 추가" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "현제 스마트 블록에 추가" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "아이템 1개 추가" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "아이템 %s개 추가" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "스마트 블록에는 파일만 추가 가능합니다" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "재생 몰록에는 파일, 스마트 블록, 웹스트림만 추가 가능합니다" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "타임 라인에서 커서를 먼져 선택 하여 주세요." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "추가" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "수정" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "제거" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "메타데이타 수정" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "선택된 쇼에 추가" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "선택" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "현재 페이지 선택" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "현재 페이지 선택 취소 " + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "모두 선택 취소" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "선택된 아이템들을 모두 지우시겠습니다?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "스케쥴됨" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "제목" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "제작자" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "앨범" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "비트 레이트" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "작곡가" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "지휘자" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "저작권" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "장르" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "레이블" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "언어" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "마지막 수정일" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "마지막 방송일" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "길이" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "무드" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "소유자" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "리플레이 게인" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "샘플 레이트" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "트랙 번호" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "업로드 날짜" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "웹싸이트" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "년도" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "로딩..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "전체" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "파일" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "재생 목록" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "스마트 블록" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "웹스트림" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "알수 없는 유형:" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "선택된 아이템을 모두 삭제 하시겠습니까?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "업로딩중..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "서버에서 정보를 가져오는중..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "에러 코드: " + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "에러 메세지: " + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "이 값은 0보다 큰 숫자만 허용 됩니다" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "이 값은 숫자만 허용합니다" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "yyyy-mm-dd의 형태로 입력해주세요" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "hh:mm:ss.t의 형태로 입력해주세요" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "현재 파일이 업로드 중입니다. %s다른 화면으로 이동하면 현재까지 업로드한 프로세스가 취소됩니다. %s이동하겠습니까?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "미디아 빌더 열기" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "'00:00:00 (.0)' 형태로 입력해주세요" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "현재 사용중인 브라우저에선 이 파일을 play할수 없습니다: " + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "동적인 스마트 블록은 프리뷰 할수 없습니다" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "길이 제한: " + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "재생 목록이 저장 되었습니다" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "플레이 리스트가 셔플 되었습니다" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime이 파일에 대해 정확히 알수 없습니다. 이 경우는 파일이 접근할수 없는 리모트 드라이브에 있거나, 파일이 있는 폴더가 더이상 모니터 되지 않을때 일어날수 있습니다." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "%s의청취자 숫자 : %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "1주후에 다시 알림" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "이 창을 다시 표시 하지 않음" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Airtime 도와주기" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "허용된 이미지 파일 타입은 jpg, jpeg, png 또는 gif 입니다" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "정적 스마트 블록은 크라이테리아를 저장하고 내용을 생성 합니다. 그러므로 쇼에 추가 하기전에 내용을 수정하실수 있습니다 " + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "동적 스마트 블록은 크라이테리아만 저장하고 내용은 쇼에 추가 할때까지 생성하지 않습니다. 이는 동적 스마트 블록을 쇼에 추가 할때마다 다른 내용을 추가하게 됩니다." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "스마트 블록이 셔플 되었습니다" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "스마트 블록이 생성 되고 크라이테리아가 저장 되었습니다" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "스마트 블록이 저장 되었습니다" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "진행중..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "모디파이어 선택" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "다음을 포합" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "다음을 포함하지 않는" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "다음과 같음" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "다음과 같지 않음" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "다음으로 시작" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "다음으로 끝남" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "다음 보다 큰" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "다음 보타 작은" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "다음 범위 안에 있는 " + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "생성" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "저장 폴더 선택" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "모니터 폴더 선택" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "저장 폴더를 수정하길 원하십니까? 수정시 모든 파일이 라이브러리에서 사라집니다." + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "미디어 폴더 관리" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "선택하신 폴더를 모니터 리스트에서 삭제 하시겠습ㄴ지까?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "경로에 접근할수 없습니다" + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "어떤 스트림은 추가 설정이 필요합니다. %sAAC+ 지원%s 또는 %sOpus 지원%s 설명" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "스트리밍 서버에 접속됨" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "스트림이 사용되지 않음" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "서버에서 정보를 받는중..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "스트리밍 서버에 접속 할수 없음" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "OGG 스트림의 메타데이타를 사용하고 싶으시면, 이 옵션을 체크 해주세요. VLC나 mplayer 같은 플래이어들에서 버그가 발견되어 OGG 스트림을 메타데이타와 함꼐 사용시, 각 파일 종료시 스트림을 끊어버립니다." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "마스터/쇼 소스가 끊어졌을때 자동으로 스위치를 끔." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "마스터/쇼 소스가 접속 되었을때 자동으로 스위를 켬." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Icecast 서버 인증 아이디가 source로 설정이 되어있다면, 이 필드는 입렵 하실필요 없습니다." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "현재 사용중이신 라이브 스트리밍 클라이언트에 사용자 필드가 없다면, 이 필드에 'source'라고 입력 해주세요." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "관리자 아이디/암호는 Icecast와 SHOUTcast에서 청취자 통계를 얻기 위해 필요합니다" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "결과 없음" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "쇼에 지정된 사람들만 접속 할수 있습니다" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "커스텁 인증을 설정하시면, 아무나 그걸 사용하여 해당 쇼에 접속 가능합니다" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "쇼 인스턴스가 존재 하지 않습니다" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "주의: 쇼는 다시 링크 될수 없습니다" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "반복 되는 쇼를 링크하면, 반복 쇼에 스케쥴된 아이템들이 다른 반복 쇼에도 스케쥴이 됩니다" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "쇼" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "쇼가 비어 있습니다" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1분" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5분" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10분" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15분" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30분" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60분" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "서버로부터 데이타를 불러오는중..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "내용이 없는 쇼입니다" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "쇼가 완전히 채워지지 않았습니다" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "1월" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "2월" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "3월" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "4월" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "5월" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "6월" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "7월" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "8월" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "9월" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "10월" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "11월" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "12월" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "1월" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "2월" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "3월" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "4월" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "6월" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "7월" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "8월" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "9월" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "10월" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "11월" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "12월" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "일요일" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "월요일" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "화요일" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "수요일" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "목요일" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "금요일" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "토요일" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "일" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "월" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "화" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "수" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "목" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "금" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "토" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "쇼가 자신의 길이보다 더 길게 스케쥴 되었다면, 쇼 길이에 맞게 짤라지며, 다음 쇼가 시작 됩니다" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "현재 방송중인 쇼를 중단 하시겠습니까?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "현재 녹음 중인 쇼를 중단 하시겠습니까?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "확인" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "쇼 내용" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "모든 내용물 삭제하시겠습까?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "선택한 아이템을 삭제 하시겠습니까?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "시작" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "종료" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "길이" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "큐 인" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "큐 아웃" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "페이드 인" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "패이드 아웃" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "내용 없음" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "라인 인으로 부터 녹음" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "트랙 프리뷰" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "쇼 범위 밖에 스케쥴 할수 없습니다" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "아이템 1개 이동" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "아이템 %s개 이동" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "저장" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "취소" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "페이드 에디터" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "큐 에디터" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "웨이브 폼 기능은 Web Audio API를 지원하면 브라우저에서만 사용 가능합니다" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "전체 선택" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "전체 선택 취소" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "선택된 아이템 제거" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "현재 방송중인 트랙으로 가기" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "현재 쇼 취소" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "라이브러리 열기" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "내용 추가/제거" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "사용중" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "디스크" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "경로" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "열기" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "관리자" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "프로그램 매니저" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "손님" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "손님의 권한:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "스케쥴 보기" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "쇼 내용 보기" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ의 권한:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "할당된 쇼의 내용 관리" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "미디아 파일 추가" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "플레이 리스트, 스마트 블록, 웹스트림 생성" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "자신의 라이브러리 내용 관리" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "쇼 내용 보기및 관리" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "쇼 스케쥴 하기" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "모든 라이브러리 내용 관리" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "관리자의 권한:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "설정 관리" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "사용자 관리" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "모니터 폴터 관리" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "사용자 피드백을 보냄" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "이시스템 상황 보기" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "방송 기록 접근 권한" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "청취자 통계 보기" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "컬럼 보이기/숨기기" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr " {from}부터 {to}까지" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "일" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "월" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "화" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "수" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "목" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "금" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "토" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "닫기" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "시" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "분" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "확인" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "파일 선택" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "업로드를 원하는 파일을 선택하신후 시작 버틑을 눌러주세요." + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "파일 추가" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "업로드 중지" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "업로드 시작" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "파일 추가" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "%d/%d 파일이 업로드됨" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "파일을 여기로 드래그 앤 드랍 하세요" + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "파일 확장자 에러." + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "파일 크기 에러." + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "파일 갯수 에러." + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "초기화 에러." + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "HTTP 에러." + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "보안 에러." + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "일반적인 에러." + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "IO 에러." + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "파일: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d개의 파일이 대기중" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "파일: %f, 크기: %s, 최대 파일 크기: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "업로드 URL이 맞지 않거나 존재 하지 않습니다" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "에러: 파일이 너무 큽니다:" + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "에러: 지원하지 않는 확장자:" + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "%s row %s를 클립보드로 복사 하였습니다" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint view%s프린트를 하려면 브라우저의 프린트 기능을 사용하여주세요. 종료를 원하시면 ESC키를 누르세요" + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "설명" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "사용" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "미사용" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "이메일을 전송 할수 없습니다. 메일 서버 세팅을 다시 확인 하여 주세요" + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요" + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "오래된 %s를 보고 있습니다" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "스마트 블록에는 트랙만 추가 가능합니다" + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "제목없는 재생목록" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "제목없는 스마트 블록" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "모르는 재생목록" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "설정이 업데이트 되었습니다" + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "스트림 설정이 업데이트 되었습니다" + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "경로를 입력해주세요" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Liquidsoap 문제..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "%s의 재방송 %s부터 %s까지" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "커서 선택" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "커서 제거" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "쇼가 존재 하지 않음" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "사용자가 추가 되었습니다!" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "사용자 정보가 업데이트 되었습니다!" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "세팅이 성공적으로 업데이트 되었습니다!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "제목없는 웹스트림" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "웹스트림이 저장 되었습니다" + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "잘못된 값입니다" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "허용되지 않는 문자입니다" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "날짜를 설정하세요" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "시간을 설정하세요" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "재방송 설정까지 1시간 기간이 필요합니다" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Custom 인증 사용" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Custom 아이디" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Custom 암호" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "아이디를 입력해주세요" + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "암호를 입력해주세요" + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Line In으로 녹음" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "재방송?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "일" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "링크:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "반복 유형:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "주간" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "월간" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "날짜 선택" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "월중 날짜" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "주중 날짜" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "종료" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "무한 반복?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "종료 일이 시작일 보다 먼져 입니다." + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "배경 색:" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "글자 색:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "이름:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "이름없는 쇼" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "장르:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "설명:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다." + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "길이:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "시간대:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "반복?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "쇼를 과거에 생성 할수 없습니다" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "종료 날짜/시간을 과거로 설정할수 없습니다" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "길이가 0m 보다 작을수 없습니다" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "쇼의 길이가 24h를 넘을수 없습니다" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "쇼를 중복되게 스케쥴할수 없습니다" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "사용자 검색:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ들:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "아이디: " + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "암호: " + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "암호 확인:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "이름:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "성:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "이메일" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "휴대전화:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "스카입:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "유저 타입" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "사용할수 없는 아이디 입니다" + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "시작" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "제목:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "제작자:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "앨범:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "년도:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "상표:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "작곡가:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "지휘자" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "무드" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "저작권:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC 넘버" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "웹사이트" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "언어" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "방송국 이름" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "방송국 로고" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다" + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "기본 크로스페이드 길이(s)" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "기본 페이드 인(s)" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "기본 페이드 아웃(s)" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "주 시작일" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "숫자만 허용 됩니다" + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "로그인" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "암호" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "새 암호 확인" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "암호와 암호 확인 값이 일치 하지 않습니다." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "아이디" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "암호 초기화" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "방송중" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "내 쇼:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "기준 선택" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "비트 레이트(Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "샘플 레이트" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "시간" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "분" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "아이템" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "동적(Dynamic)" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "정적(Static)" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "재생 목록 내용 생성후 설정 저장" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "재생 목록 내용 셔플하기" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "셔플" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "길이 제한은 24h 보다 클수 없습니다" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "이 값은 정수(integer) 입니다" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "아이템 곗수의 최대값은 500 입니다" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "기준과 모디파이어를 골라주세요" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "길이는 00:00:00 형태로 입력하세요" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "이 값은 숫자만 허용 됩니다" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "이 값은 비어둘수 없습니다" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbis 메타데이타" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "스트림 레이블" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "아티스트 - 제목" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "쇼 - 아티스트 - 제목" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "방송국 이름 - 쇼 이름" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "오프 에어 메타데이타" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "리플레이 게인 활성화" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "리플레이 게인 설정" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "사용:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "스트림 타입:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "비트 레이트:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "서비스 타입:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "채널:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - 모노" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - 스테레오" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "서버" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "포트" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "이름" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "마운트 지점" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "관리자 아이디" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "관리자 암호" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "서버를 지정해주세요" + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "포트를 지정해주세요" + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "폴더 가져오기" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "모니터중인 폴더" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "옳치 않은 폴더 입니다" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "이 필드는 비워둘수 없습니다." + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%'은 맞지 않는 이메일 형식 입니다." + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다." + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%'는 %max%글자 보다 길수 없습니다" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다." + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "암호가 맞지 않습니다" + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5349,7 +3905,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5357,7 +3913,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5366,20 +3922,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "큐-인 과 큐 -아웃 이 null 입니다" + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "큐-아웃 값은 파일 길이보다 클수 없습니다" + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "큐-인 값은 큐-아웃 값보다 클수 없습니다." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "큐-아웃 값은 큐-인 값보다 작을수 없습니다." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s는 이미 모니터 중입니다 " + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s는 이미 모니터중인 폴더를 포함하고 있습니다: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s를 포함하는 폴더를 이미 모니터 중입니다: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s는 옳은 경로가 아닙니다." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s는 이미 현재 저장 폴더로 지정이 되었거나 모니터중인 폴더 입니다." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s가 모니터 목록에 없습니다" + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "국가 선택" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "링크 쇼에서 아이템을 분리 할수 없습니다" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(sched mismatch)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "현재 보고 계신 스케쥴이 맞지 않습니다(instance mismatch)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "현재 보고 계신 스케쥴이 맞지 않습니다" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "쇼를 스케쥴 할수 있는 권한이 없습니다 %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "녹화 쇼에는 파일을 추가 할수 없습니다" + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "지난 쇼(%s)에 더이상 스케쥴을 할수 없스니다" + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "쇼 %s 업데이트 되었습니다!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "선택하신 파일이 존재 하지 않습니다" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "쇼 길이는 24시간을 넘을수 없습니다." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5387,153 +4061,504 @@ msgstr "" "쇼를 중복되게 스케줄 할수 없습니다.\n" "주의: 반복 쇼의 크기를 조정하면, 모든 반복 쇼의 크기가 바뀝니다." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "%s 재방송( %s에 시작) " + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "길이가 0분 보다 길어야 합니다" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 " + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL은 \"http://domain\" 형태여야 합니다" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL은 512캐릭터 까지 허용합니다" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "웹 스트림의 MIME 타입을 찾을수 없습니다" + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "웹스트림의 이름을 지정하십시오" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "XSPF 재생목록을 분석 할수 없습니다" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "PLS 재생목록을 분석 할수 없습니다" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "M3U 재생목록을 분석할수 없습니다" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "잘못된 웹스트림 - 웹스트림이 아니고 파일 다운로드 링크입니다" + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "알수 없는 스트림 타입: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "녹음된 파일의 메타데이타 보기" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "스케쥴" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "계정" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "스트림" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "쇼 수정" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "청취자 통계" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "권한이 부족합니다" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "반복쇼는 드래그 앤 드롭 할수 없습니다" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "지난 쇼는 이동할수 없습니다" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "과거로 쇼를 이동할수 없습니다" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다" + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "녹화 쇼가 없으로 쇼가 삭제 되었습니다" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 " + +#: application/services/HistoryService.php:1064 +msgid "Track" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "초보자 가이드" +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "방송됨" -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "사용자 메뉴얼" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "블록 생성시 충분한 파일을 찾지 못하면, 블록 길이가 원하는 길이보다 짧아 질수 있습니다. 이 옵션을 선택하시면,Airtime이 트랙을 반복적으로 사용하여 길이를 채웁니다." - -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Airtime이 방화벽 뒤에 설치 되었다면, 포트 포워딩을 설정해야 할수도 있습니다. 이 경우엔 자동으로 생성된 이 정보가 틀릴수 있습니다. 수동적으로 이 필드를 수정하여 DJ들이 접속해야 하는서버/마운트/포트 등을 공지 하십시오. 포트 범위는 1024~49151 입니다." - -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "더 자세한 정보는 %sAirtime Manual%s에서 찾으실수 있습니다" - -#~ msgid "Progam Managers can do the following:" -#~ msgstr "프로그램 매니저의 권한:" - -#~ msgid "Support setting updated." -#~ msgstr "지원 설정이 업데이트 되었습니다" - -#~ msgid "Support Feedback" -#~ msgstr "사용자 피드백" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "밑에 보이는 그림에 나온 문자를 입력하세요" - -#~ msgid "Phone:" -#~ msgstr "전화" - -#~ msgid "Station Web Site:" -#~ msgstr "방송국 웹사이트" - -#~ msgid "Country:" -#~ msgstr "나라" - -#~ msgid "City:" -#~ msgstr "도시" - -#~ msgid "Station Description:" -#~ msgstr "방송국 설명" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "사용자 약관에 동의 하십시오" - -#~ msgid "Default License:" -#~ msgstr "기본 라이센스:" - -#~ msgid "Register Airtime" -#~ msgstr "Airtime 등록" - -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(확인을 위한것입니다, 이 정보는 어디에도 게시 되지 않습니다)" - -#~ msgid "Show me what I am sending " -#~ msgstr "보내지는 데이타 보기" - -#~ msgid "Terms and Conditions" -#~ msgstr "사용자 약관" - -#~ msgid "files meet the criteria" -#~ msgstr "개의 파일들" +#~ msgid " to " +#~ msgstr " 부터 " #~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." #~ msgstr "(체크 하기 위해선 '피드백 보내기'를 체크 하셔야 합니다)" -#~ msgid "Your trial expires in" -#~ msgstr " " +#~ msgid "(Required)" +#~ msgstr "(*)" -#~ msgid "This version will soon be obsolete." -#~ msgstr "지금 사용중인 버전은 조만간 지원 하지 않을것입니다" +#~ msgid "(Your radio station website)" +#~ msgstr "(방송국 웹사이트 주소)" -#~ msgid "This version is no longer supported." -#~ msgstr "지금 사용중인 버전은 더 이상 지원 되지 않습니다" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(확인을 위한것입니다, 이 정보는 어디에도 게시 되지 않습니다)" + +#~ msgid "About" +#~ msgstr "정보" + +#~ msgid "Add this show" +#~ msgstr "쇼 추가" + +#~ msgid "Additional Options" +#~ msgstr "추가 설정" + +#~ msgid "Advanced Search Options" +#~ msgstr "고급 검색 옵션" + +#~ msgid "Audio Track" +#~ msgstr "오디오 트랙" + +#~ msgid "Choose Days:" +#~ msgstr "날짜 선택" + +#~ msgid "Choose folder" +#~ msgstr "폴더 선택" + +#~ msgid "City:" +#~ msgstr "도시" + +#~ msgid "Clear" +#~ msgstr "지우기" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "링크 쇼의 내용은 이미 방송된 쇼의 전후에만 스케쥴 할수 있습니다" + +#~ msgid "Country:" +#~ msgstr "나라" + +#~ msgid "Cue In: " +#~ msgstr "큐 인:" + +#~ msgid "Cue Out: " +#~ msgstr "큐 아웃:" + +#~ msgid "Current Import Folder:" +#~ msgstr "현재 저장 폴더:" + +#~ msgid "Cursor" +#~ msgstr "커서" + +#~ msgid "Default Length:" +#~ msgstr "기본 길이:" + +#~ msgid "Default License:" +#~ msgstr "기본 라이센스:" + +#~ msgid "Disk Space" +#~ msgstr "디스크 공간" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "동적 스마트 블록" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "동적 스마트 블록 내용: " + +#~ msgid "Empty playlist content" +#~ msgstr "재생 목록 비우기" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "동적 블록 확장" + +#~ msgid "Expand Static Block" +#~ msgstr "정적 블록 확장" + +#~ msgid "Fade in: " +#~ msgstr "페이드 인: " + +#~ msgid "Fade out: " +#~ msgstr "페이드 아웃:" + +#~ msgid "File Path:" +#~ msgstr "파일 위치:" + +#~ msgid "File import in progress..." +#~ msgstr "파일 가져오기 진행중" + +#~ msgid "Filter History" +#~ msgstr "필터 히스토리" + +#~ msgid "Find Shows" +#~ msgstr "쇼 찾기" + +#~ msgid "First Name" +#~ msgstr "이름" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "더 자세한 도움을 원하시면, 메뉴얼을 참고 하여 주세요. %suser manual%s" + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "더 자세한 정보는 %sAirtime Manual%s에서 찾으실수 있습니다" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Airtime이 방화벽 뒤에 설치 되었다면, 포트 포워딩을 설정해야 할수도 있습니다. 이 경우엔 자동으로 생성된 이 정보가 틀릴수 있습니다. 수동적으로 이 필드를 수정하여 DJ들이 접속해야 하는서버/마운트/포트 등을 공지 하십시오. 포트 범위는 1024~49151 입니다." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC 넘버:" + +#~ msgid "Last Name" +#~ msgstr "성" + +#~ msgid "Length:" +#~ msgstr "길이:" + +#~ msgid "Limit to " +#~ msgstr "길이 제한 " + +#~ msgid "Listen" +#~ msgstr "듣기" + +#~ msgid "Live Stream Input" +#~ msgstr "라이브 스트림" + +#~ msgid "Live stream" +#~ msgstr "라이브 스트림" + +#~ msgid "Logout" +#~ msgstr "로그아웃" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "찾는 페이지가 존재 하지 않습니다!" + +#~ msgid "Manage Users" +#~ msgstr "사용자 관리" + +#~ msgid "Master Source" +#~ msgstr "마스터 소스" + +#~ msgid "New User" +#~ msgstr "새 사용자" + +#~ msgid "New password" +#~ msgstr "새 암호" + +#~ msgid "Next:" +#~ msgstr "다음:" + +#~ msgid "No open playlist" +#~ msgstr "열린 재생 목록 없음" + +#~ msgid "No webstream" +#~ msgstr "열린 웹스트림 없음" + +#~ msgid "OK" +#~ msgstr "확인" + +#~ msgid "ON AIR" +#~ msgstr "방송중" + +#~ msgid "Original Length:" +#~ msgstr "오리지날 길이" + +#~ msgid "Page not found!" +#~ msgstr "페이지를 찾을수 없습니다!" + +#~ msgid "Phone:" +#~ msgstr "전화" + +#~ msgid "Play" +#~ msgstr "재생" + +#~ msgid "Playlist Contents: " +#~ msgstr "재생목록 내용" + +#~ msgid "Playlist crossfade" +#~ msgstr "재생 목록 크로스페이드" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "새 암호 확인" #~ msgid "Please upgrade to " #~ msgstr "새 버전으로 업그래이드 " +#~ msgid "Previous:" +#~ msgstr "이전:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "프로그램 매니저의 권한:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime 등록" + +#~ msgid "Remove watched directory" +#~ msgstr "모니터중인 폴더를 리스트에서 삭제" + +#~ msgid "Repeat Days:" +#~ msgstr "반복 날짜:" + +#~ msgid "Sample Rate:" +#~ msgstr "샘플 레이트:" + +#~ msgid "Save playlist" +#~ msgstr "재생 목록 저장" + +#~ msgid "Select stream:" +#~ msgstr "스트림 선택" + +#~ msgid "Set" +#~ msgstr "저장" + +#~ msgid "Set Cue Out" +#~ msgstr "큐 아웃 설정" + +#~ msgid "Share" +#~ msgstr "공유" + +#~ msgid "Show Source" +#~ msgstr "쇼 소스" + +#~ msgid "Show Waveform" +#~ msgstr "웨이브 폼 보기" + +#~ msgid "Show me what I am sending " +#~ msgstr "보내지는 데이타 보기" + +#~ msgid "Shuffle playlist" +#~ msgstr "재생 목록 셔플" + +#~ msgid "Source Streams" +#~ msgstr "소스 스트림" + +#~ msgid "Static Smart Block" +#~ msgstr "정적 스마트 블록" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "정적 스마트 블록 내용: " + +#~ msgid "Station Description:" +#~ msgstr "방송국 설명" + +#~ msgid "Station Web Site:" +#~ msgstr "방송국 웹사이트" + +#~ msgid "Stop" +#~ msgstr "정지" + +#~ msgid "Stream " +#~ msgstr "스트림 " + +#~ msgid "Stream Settings" +#~ msgstr "락스트림 설정" + +#~ msgid "Stream URL:" +#~ msgstr "스트림 URL:" + +#~ msgid "Stream URL: " +#~ msgstr "스트림 URL: " + +#~ msgid "Style" +#~ msgstr "스타일" + +#~ msgid "Support Feedback" +#~ msgstr "사용자 피드백" + +#~ msgid "Support setting updated." +#~ msgstr "지원 설정이 업데이트 되었습니다" + +#~ msgid "Terms and Conditions" +#~ msgstr "사용자 약관" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "블록 생성시 충분한 파일을 찾지 못하면, 블록 길이가 원하는 길이보다 짧아 질수 있습니다. 이 옵션을 선택하시면,Airtime이 트랙을 반복적으로 사용하여 길이를 채웁니다." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "밑에 정보들은 청취자에 플래이어에 표시 됩니다:" + +#~ msgid "This version is no longer supported." +#~ msgstr "지금 사용중인 버전은 더 이상 지원 되지 않습니다" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "지금 사용중인 버전은 조만간 지원 하지 않을것입니다" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "미디어를 재생하기 위해선, 브라우저를 최신 버젼으로 업데이트 하시고, %sFlash plugin%s도 업데이트 해주세요" + +#~ msgid "Track:" +#~ msgstr "트랙:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "밑에 보이는 그림에 나온 문자를 입력하세요" + +#~ msgid "Update Required" +#~ msgstr "업데이트가 필요함" + +#~ msgid "Update show" +#~ msgstr "쇼 업데이트" + +#~ msgid "User Type" +#~ msgstr "사용자 유형" + +#~ msgid "Web Stream" +#~ msgstr "웹스트림" + +#~ msgid "What" +#~ msgstr "무엇" + +#~ msgid "When" +#~ msgstr "언제" + +#~ msgid "Who" +#~ msgstr "누구" + +#~ msgid "You are not watching any media folders." +#~ msgstr "모니터중인 폴더가 없습니다" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "사용자 약관에 동의 하십시오" + +#~ msgid "Your trial expires in" +#~ msgstr " " + +#~ msgid "files meet the criteria" +#~ msgstr "개의 파일들" + +#~ msgid "id" +#~ msgstr "아이디" + +#~ msgid "max volume" +#~ msgstr "최대 음량 " + +#~ msgid "mute" +#~ msgstr "음소거" + +#~ msgid "next" +#~ msgstr "다음" + +#~ msgid "pause" +#~ msgstr "중지" + +#~ msgid "play" +#~ msgstr "재생" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "초단위 '00 (.0)'로 입력해주세요" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "링크 쇼의 내용은 이미 방송된 쇼의 전후에만 스케쥴 할수 있습니다" +#~ msgid "previous" +#~ msgstr "이전" + +#~ msgid "stop" +#~ msgstr "정지" + +#~ msgid "unmute" +#~ msgstr "음소거 해제" diff --git a/legacy/locale/lt/LC_MESSAGES/libretime.po b/legacy/locale/lt/LC_MESSAGES/libretime.po deleted file mode 100644 index fffe6b142..000000000 --- a/legacy/locale/lt/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5461 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -# Moo, 2015 -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Lithuanian (http://www.transifex.com/sourcefabric/airtime/language/lt/)\n" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/nl_NL/LC_MESSAGES/libretime.po b/legacy/locale/nl_NL/LC_MESSAGES/libretime.po index 52348f1b0..fd36a0867 100644 --- a/legacy/locale/nl_NL/LC_MESSAGES/libretime.po +++ b/legacy/locale/nl_NL/LC_MESSAGES/libretime.po @@ -1,4613 +1,609 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # dave van den berg , 2015 # terwey , 2014 # terwey , 2014 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-28 12:25+0000\n" "Last-Translator: dave van den berg \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/sourcefabric/airtime/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands)\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Inloggen" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'." - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nieuw wachtwoord" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Playout geschiedenis" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Log blad" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Bestand samenvatting" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Samenvatting weergeven" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Mediamappen beheren" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Instellingen voor stream" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "opslaan" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Stream" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Vereist)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Extra opties" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Uw radio station website)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "Stream URL:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "of" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "en" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "tot" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Kies show exemplaar" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "geen show" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Zoeken" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Kies map" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Instellen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Huidige Import map:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "toevoegen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "gecontroleerde map verwijderen" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Niet bekijkt u alle Mediamappen." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Kies dagen:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "verwijderen" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Herhaal dagen:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "zoek Shows" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filter geschiedenis" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Bron weergeven" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master bron" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "Oke" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "Welkom tot %s!" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Gebruikers beheren" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Nieuwe gebruiker" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "gebuikersnaam" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Voornaam" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Achternaam" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Gebruikerstype" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Statisch blok uitbreiden" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Dynamische blok uitbreiden" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "naam" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Omschrijving:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Looptijd:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Shuffle afspeellijst" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Shuffle" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Afspeellijst crossfade" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Lege afspeellijst inhoud" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Wissen" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade out:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "anuleren" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Afspeellijst opslaan" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Geen open afspeellijst" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Show Waveform" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade in:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Oorspronkelijke lengte:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "In gebruik" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Alle" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Geadvanceerde zoek opties" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Beschrijving" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "Stream URL:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Standaard lengte:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Geen webstream" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Sluiten" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "naam" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Aangemaakt door" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Taal" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright:" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Bestand importeren in vooruitgang..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Titel" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Aangemaakt door" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "track" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Lengte:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Sample Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Mood:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "genre:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Jaar" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "label" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "schrijver van een muziekwerk" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Conductor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC nummer:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Taal:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Bestandspad:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dynamische slimme blok" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statisch slimme blok" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Audiotrack" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Inhoud van de afspeellijst:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Statisch slimme blok inhoud:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dynamische slimme blok Criteria:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Beperken tot" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Hardeschijf ruimte" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "vorige" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "spelen" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pauze" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "volgende" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "Stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "dempen" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "microfoon" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "Max volume" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Update vereist" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Bestand samenvatting sjabloon maken" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Log werkbladsjabloon maken" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Meer elementen toevoegen" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Nieuw veld toevoegen" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Standaardsjabloon" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Log blad sjablonen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Nieuwe Log werkbladsjabloon" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Geen Log blad sjablonen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Standaard instellen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Bestand samenvatting sjablonen" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Nieuwe bestand samenvatting sjabloon" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Geen bestand samenvatting sjablonen" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Over" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station." - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Live stream" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Deel" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Selecteer stream:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Deze show toevoegen" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Bijwerken van show" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Wat" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Wanneer" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Live Stream Input" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Wie" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Stijl" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Start" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Titel" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Lengte" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Genre" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "label" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Vorige:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Volgende:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Bron Streams" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ON AIR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Luister" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "loguit" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "track" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Afspeellijsten" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "slimme blokken" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "Help" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Pagina niet gevonden!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Afspeellijsten" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Play" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stop" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Infaden" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "uitfaden" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Je hebt geen toestemming om te bron verbreken" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Er is geen bron die aangesloten op deze ingang." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Je hebt geen toestemming om over te schakelen van de bron." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Voer uw gebruikersnaam en wachtwoord." - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd." - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Naamloze Webstream" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream opgeslagen." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Ongeldige formulierwaarden." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "De gevraagde actie wordt niet ondersteund." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "U bent niet gemachtigd voor toegang tot deze bron." - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "Een interne toepassingsfout opgetreden." - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "gebruiker Succesvol Toegevoegd" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "gebruiker Succesvol bijgewerkt" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Instellingen met succes bijgewerkt!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Voorbeeld" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Selecteer cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Cursor verwijderen" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Verwijderen" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "show bestaat niet" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Voorkeuren bijgewerkt." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Stream vaststelling van bijgewerkte." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "pad moet worden opgegeven" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Probleem met Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "Verzoek methode niet geaccepteerd" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s niet gevonden" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Er ging iets mis." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Toevoegen aan afspeellijst" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Toevoegen aan slimme blok" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Download" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Dubbele afspeellijst" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Geen actie beschikbaar" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Kan bestand niet verwijderen omdat het in de toekomst is gepland." - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "Bestand(en) kan geen gegevens verwijderen." - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopie van %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "U bent niet toegestaan voor toegang tot deze bron." - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "U bent niet toegestaan voor toegang tot deze bron." - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "Bestand bestaat niet in %s" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven." - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "Slecht verzoek. 'mode' parameter is ongeldig" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "U bekijkt een oudere versie van %s" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "U kunt nummers toevoegen aan dynamische blokken." - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "U kunt alleen nummers toevoegen aan smart blok." - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten." - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Naamloze afspeellijst" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Naamloze slimme block" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Onbekende afspeellijst" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "Opname" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "Master Stream" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "Live stream" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "Niets gepland" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "Huidige Show:" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "Huidige" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "U werkt de meest recente versie" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "Nieuwe versie beschikbaar:" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "Toevoegen aan huidige afspeellijst" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "Toevoegen aan huidigeslimme block" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "1 Item toevoegen" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "%s Items toe te voegen" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "U kunt alleen nummers naar slimme blokken toevoegen." - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "Selecteer een cursorpositie op de tijdlijn." - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "U hebt de nummers nog niet toegevoegd" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "U heb niet alle afspeellijsten toegevoegd" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "U nog niet toegevoegd een slimme blokken" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "U hebt webstreams nog niet toegevoegd" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "Informatie over nummers" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "Meer informatie over afspeellijsten" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "Informatie over slimme blokken" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "Meer informatie over webstreams" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "Klik op 'Nieuw' te maken." - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "Bewerken" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "Metagegevens bewerken" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "Toevoegen aan geselecteerde Toon" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "Selecteer" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "Selecteer deze pagina" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "Hef de selectie van deze pagina" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "Alle selecties opheffen" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "Gepland" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "Bit Rate" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "Componist" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "Dirigent" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "Encoded Bij" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "Laatst Gewijzigd" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "Laatst gespeeld" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "Mime" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "Mood" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "Eigenaar" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "Herhalen Gain" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "Sample Rate" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "Track nummer" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "Uploaded" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "Website:" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "Jaar" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "Bezig met laden..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "Bestanden" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "Web Streams" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "Onbekend type" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "Wilt u de geselecteerde gegevens werkelijk verwijderen?" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "Uploaden in vooruitgang..." - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "Gegevens op te halen van de server..." - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "Weergeven" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "foutcode" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "Fout msg:" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "Invoer moet een positief getal" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "Invoer moet een getal" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "Invoer moet worden in de indeling: jjjj-mm-dd" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "Invoer moet worden in het formaat: hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "Open Media opbouw" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "Gelieve te zetten in een tijd '00:00 (.0)'" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "Dynamische blok is niet previewable" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "Beperk tot:" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "Afspeellijst opgeslagen" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "Afspeellijst geschud" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken." - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "Luisteraar rekenen op %s: %s" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "Stuur me een herinnering in 1 week" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "Herinner me nooit" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "Ja, help Airtime" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "Afbeelding moet een van jpg, jpeg, png of gif" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show." - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek." - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "slimme blok geschud" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "slimme blok gegenereerd en opgeslagen criteria" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "Smart blok opgeslagen" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "Wordt verwerkt..." - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "Selecteer modifier" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "bevat" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "bevat niet" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "is" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "is niet gelijk aan" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "Begint met" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "Eindigt op" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "is groter dan" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "is minder dan" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "in het gebied" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "Genereren" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "Kies opslagmap" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "Kies map voor bewaken" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" -"Weet u zeker dat u wilt wijzigen de opslagmap?\n" -"Hiermee verwijdert u de bestanden uit uw Airtime bibliotheek!" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "Dit pad is momenteel niet toegankelijk." - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt." - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "Aangesloten op de streaming server" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "De stream is uitgeschakeld" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "Het verkrijgen van informatie van de server ..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "Kan geen verbinding maken met de streaming server" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie." - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten." - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'." - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken." - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "Geen resultaat gevonden" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken." - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "Geef aangepaste verificatie die alleen voor deze show werken zal." - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "De Toon-exemplaar bestaat niet meer!" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "Waarschuwing: Shows kunnen niet opnieuw gekoppelde" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen." - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "Show" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "Show Is leeg" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "1m" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "5m" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "10m" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "15m" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "30m" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "60m" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "Retreiving gegevens van de server..." - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "Deze show heeft geen geplande inhoud." - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "Deze show is niet volledig gevuld met inhoud." - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "Januari" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "Februari" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "maart" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "april" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "mei" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "juni" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "juli" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "augustus" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "september" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "oktober" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "november" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "december" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "jan" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "feb" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "maa" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "apr" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "jun" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "jul" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "aug" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "sep" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "okt" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "nov" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "dec" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "vandaag" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "dag" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "week" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "maand" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "zondag" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "maandag" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "dinsdag" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "woensdag" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "donderdag" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "vrijdag" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "zaterdag" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "zon" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "ma" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "di" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "wo" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "do" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "vrij" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "zat" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling." - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "Annuleer Huidige Show?" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "Stop de opname huidige show?" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "oke" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "Inhoud van Show" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "Alle inhoud verwijderen?" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "verwijderd geselecteerd object(en)?" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "einde" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "Duur" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "Filteren op" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "of" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "records" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "Show leeg" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "Opname van de Line In" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "Track Voorbeeld" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "Niet gepland buiten een show." - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "1 Item verplaatsen" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "%s Items verplaatsen" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "Fade Bewerken" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "Cue Bewerken" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "Selecteer alles" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "Niets selecteren" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "Trim overboekte shows" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "Geselecteerde geplande items verwijderen" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "Jump naar de huidige playing track" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "Annuleren van de huidige show" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "Open bibliotheek toevoegen of verwijderen van inhoud" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "Toevoegen / verwijderen van inhoud" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "hardeschijf" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "Zoeken in:" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "open" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "Admin" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DJ" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "Programmabeheer" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "gast" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "Gasten kunnen het volgende doen:" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "Schema weergeven" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "Weergave show content" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "DJ's kunnen het volgende doen:" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "Toegewezen Toon inhoud beheren" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "Mediabestanden importeren" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "Maak afspeellijsten, slimme blokken en webstreams" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "De inhoud van hun eigen bibliotheek beheren" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "Bekijken en beheren van inhoud weergeven" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "Schema shows" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "Alle inhoud van de bibliotheek beheren" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "Beheerders kunnen het volgende doen:" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "Voorkeuren beheren" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "Gebruikers beheren" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "Bewaakte mappen beheren" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "Ondersteuning feedback verzenden" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "Bekijk systeem status" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "Toegang playout geschiedenis" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "Weergave luisteraar status" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "Geef weer / verberg kolommen" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "Van {from} tot {to}" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "kbps" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "jjjj-mm-dd" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "hh:mm:ss.t" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "kHz" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "Zo" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "Ma" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "Di" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "Wo" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "Do" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "Vr" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "Za" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "Uur" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "Minuut" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "Klaar" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "Selecteer bestanden" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "Bestanden toevoegen" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "Stop upload" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "Begin upload" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "Bestanden toevoegen" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "Geüploade %d/%d bestanden" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "N/B" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "Sleep bestanden hierheen." - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "Bestandsextensie fout" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "Bestandsgrote fout." - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "Graaf bestandsfout." - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "Init fout." - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "HTTP fout." - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "Beveiligingsfout." - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "Generieke fout." - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "IO fout." - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "Bestand: %s" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "%d bestanden in de wachtrij" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "File: %f, grootte: %s, max bestandsgrootte: %m" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "Upload URL zou verkeerd kunnen zijn of bestaat niet" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "Fout: Bestand is te groot" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "Fout: Niet toegestane bestandsextensie " - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "Aangemaakt op:" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "Geschiedenis Record bewerken" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "Rij gekopieerde %s %s naar het Klembord" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent." - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "Nieuw Show" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "Nieuwe logboekvermelding" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "Ingeschakeld" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "Rebroadcast van show %s van %s in %s" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Record bestand bestaat niet" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Weergave opgenomen bestand Metadata" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Schema Tracks" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Wissen show" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "Annuleren show" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "Aanleg bewerken" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Bewerken van Show" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "Exemplaar verwijderen" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "Exemplaar verwijderen en alle volgende" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Toestemming geweigerd" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Kan niet slepen en neerzetten herhalende shows" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Een verleden Show verplaatsen niet" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Niet verplaatsen show in verleden" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "kan Niet gepland overlappen shows" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Moet wachten 1 uur opnieuw uitzenden.." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "track" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Begintijd" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Eindtijd" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Gespeeld" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Selecteer criteria" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "Uren" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minuten" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "artikelen" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamisch" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "status" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Shuffle afspeellijst inhoud" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limiet mag niet meer dan 24 uur" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "De waarde moet een geheel getal" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 is de grenswaarde max object die kunt u instellen" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "U moet Criteria en Modifier selecteren" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Lengte' moet in ' 00:00:00 ' formaat" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "De waarde moet worden numerieke" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "De waarde moet minder dan 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "De waarde moet kleiner zijn dan %s tekens" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Waarde kan niet leeg" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC nummer:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "mappen importeren" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Gecontroleerde mappen:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Niet een geldige map" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "link" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Herhaal Type:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "wekelijks" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "elke 2 weken" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "elke 3 weken" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "elke 4 weken" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "per maand" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Selecteer dagen:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Herhaal door:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "dag van de maand" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "Dag van de week" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "datum einde" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Geen einde?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Einddatum moet worden na begindatum ligt" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Selecteer een Herhaal dag" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Waarde is vereist en mag niet leeg zijn" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' past niet de tijdnotatie 'UU:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "tijdzone:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "herhaalt?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "kan niet aanmaken show in het verleden weergeven" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Start datum/tijd van de show die is al gestart wijzigen niet" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Eind datum/tijd mogen niet in het verleden" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Geen duur hebben < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Kan niet hebben duur 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Duur groter is dan 24h kan niet hebben" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "gebuikersnaam" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "wachtwoord" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Wachtwoord verifiëren:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "voornaam" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "achternaam" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "e-mail" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "mobiel nummer" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "skype" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Gebruiker Type :" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Login naam is niet uniek." - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "verificatie %s gebruiken:" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Gebruik aangepaste verificatie:" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Aangepaste gebruikersnaam" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Aangepaste wachtwoord" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Veld Gebruikersnaam mag niet leeg." - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "veld wachtwoord mag niet leeg." - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "station tijdzone" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "datum start" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Ongeldig teken ingevoerd" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "zoek gebruikers" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "al mij shows" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "achtergrond kleur" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "tekst kleur" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Dag moet worden opgegeven" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Tijd moet worden opgegeven" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Zonder titel show" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "station naam" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "Station Logo:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast." - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "Standaardduur Crossfade (s):" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "standaard fade in (s):" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "standaard fade uit (s):" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "Week start aan" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Opnemen vanaf de lijn In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset wachtwoord" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "Alleen cijfers zijn toegestaan." - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "wachtwoord" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Bevestig nieuw wachtwoord" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "dagen" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Ingeschakeld" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "kanalen:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1- Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "poort" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Aankoppelpunt" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "admin gebuiker " - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "admin wachtwoord " - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server kan niet leeg zijn" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "poort kan niet leeg zijn" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount kan niet leeg zijn met Icecast server" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface tijdzone:" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "Nu spelen" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' past niet in de datumnotatie '%format%'" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is minder dan %min% tekens lang" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is meer dan %max% karakters lang" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen." - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbis Metadata" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "Stream Label:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "Artiest - Titel" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "Show - Artiest - titel" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "Station naam - Show naam" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "Off Air Metadata" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "Inschakelen Replay Gain" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "Replay Gain Modifier" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 +#: application/common/DateHelper.php:216 #, php-format msgid "The year %s must be within the range of 1753 - 9999" msgstr "Het jaar %s moet binnen het bereik van 1753-9999" -#: legacy/application/common/DateHelper.php:216 +#: application/common/DateHelper.php:219 #, php-format msgid "%s-%s-%s is not a valid date" msgstr "%s-%s-%s dit is geen geldige datum" -#: legacy/application/common/DateHelper.php:240 +#: application/common/DateHelper.php:243 #, php-format msgid "%s:%s:%s is not a valid time" msgstr "%s:%s:%s Dit is geen geldige tijd." -#: legacy/application/common/UsabilityHints.php:66 +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 msgid "Upload some tracks below to add them to your library!" msgstr "Uploaden sommige tracks hieronder toe te voegen aan uw bibliotheek!" -#: legacy/application/common/UsabilityHints.php:68 +#: application/common/UsabilityHints.php:69 #, php-format msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "Het lijkt erop dat u alle audio bestanden nog niet hebt geüpload. %sUpload een bestand nu%s." -#: legacy/application/common/UsabilityHints.php:74 +#: application/common/UsabilityHints.php:76 msgid "Click the 'New Show' button and fill out the required fields." msgstr "Klik op de knop 'Nieuwe Show' en vul de vereiste velden." -#: legacy/application/common/UsabilityHints.php:76 +#: application/common/UsabilityHints.php:80 #, php-format msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "Het lijkt erop dat u niet alle shows gepland. %sCreate een show nu%s." -#: legacy/application/common/UsabilityHints.php:84 +#: application/common/UsabilityHints.php:89 msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "Om te beginnen omroep, de huidige gekoppelde show te annuleren door op te klikken en te selecteren 'Annuleren Show'." -#: legacy/application/common/UsabilityHints.php:86 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" "Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" @@ -4616,739 +612,3298 @@ msgstr "" "Gekoppelde toont dienen te worden opgevuld met tracks voordat het begint. Om te beginnen met omroep annuleren de huidige gekoppeld Toon en plannen van een niet-gekoppelde show.\n" "%sCreate een niet-gekoppelde Toon nu%s." -#: legacy/application/common/UsabilityHints.php:91 +#: application/common/UsabilityHints.php:96 msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "Om te beginnen omroep, klik op de huidige show en selecteer 'Schema Tracks'" -#: legacy/application/common/UsabilityHints.php:93 +#: application/common/UsabilityHints.php:100 #, php-format msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/UsabilityHints.php:100 +#: application/common/UsabilityHints.php:107 msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/common/UsabilityHints.php:102 +#: application/common/UsabilityHints.php:111 #, php-format msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " msgstr "" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " msgstr "" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" msgstr "" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calender" -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" +#: application/configs/navigation.php:52 +msgid "Player" msgstr "" -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" +#: application/configs/navigation.php:80 +msgid "My Profile" msgstr "" -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "gebruikers" -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" +#: application/configs/navigation.php:91 +msgid "Track Types" msgstr "" -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "streams" -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" +#: application/configs/navigation.php:114 +msgid "Analytics" msgstr "" -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Playout geschiedenis" -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Geschiedenis sjablonen" -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "luister status" -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" msgstr "" -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "Help" -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Aan de slag" -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Gebruikershandleiding" -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "U bent niet toegestaan voor toegang tot deze bron." -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "U bent niet toegestaan voor toegang tot deze bron." -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Het Cue in en cue uit null zijn." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Niet instellen cue in groter dan cue uit." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Niet instellen cue uit op kleiner zijn dan het cue in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Lengte moet groter zijn dan 0 minuten" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Length should be of form \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL should be of form \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL moet 512 tekens of minder" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Geen MIME-type gevonden voor webstream." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Webstream naam mag niet leeg zijn" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Could not parse XSPF playlist" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Kon niet ontleden PLS afspeellijst" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Kon niet ontleden M3U playlist" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden." - -#: legacy/application/models/Webstream.php:336 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format -msgid "Unrecognized stream type: %s" -msgstr "Niet herkende type stream: %s" +msgid "File does not exist in %s" +msgstr "Bestand bestaat niet in %s" -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Rebroadcast van %s van %s" +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven." -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Selecteer land" +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "Slecht verzoek. 'mode' parameter is ongeldig" -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Items uit gekoppelde toont kan niet verplaatsen" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Je hebt geen toestemming om te bron verbreken" -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Er is geen bron die aangesloten op deze ingang." -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)" +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Je hebt geen toestemming om over te schakelen van de bron." -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Het schema dat u aan het bekijken bent is verouderd!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "U zijn niet toegestaan om te plannen show %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "U kunt bestanden toevoegen aan het opnemen van programma's." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "De show %s is voorbij en kan niet worden gepland." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "De show %s heeft al eerder zijn bijgewerkt!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat." - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Een geselecteerd bestand bestaat niet!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s is al bekeken." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s bevat geneste gevolgde directory: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s is niet een geldige directory." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s bestaat niet in de lijst met gevolgde." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/models/Auth.php:33 +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "De gevraagde actie wordt niet ondersteund." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "U bent niet gemachtigd voor toegang tot deze bron." + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "Een interne toepassingsfout opgetreden." + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 +#, php-format +msgid "%s not found" +msgstr "%s niet gevonden" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Er ging iets mis." + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Voorbeeld" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Toevoegen aan afspeellijst" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Toevoegen aan slimme blok" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Verwijderen" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Dubbele afspeellijst" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Geen actie beschikbaar" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen" + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Kan bestand niet verwijderen omdat het in de toekomst is gepland." + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "Bestand(en) kan geen gegevens verwijderen." + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopie van %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "Opname" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "Master Stream" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Live stream" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "Niets gepland" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "Huidige Show:" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "Huidige" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "U werkt de meest recente versie" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "Nieuwe versie beschikbaar:" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "Toevoegen aan huidige afspeellijst" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "Toevoegen aan huidigeslimme block" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "1 Item toevoegen" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "%s Items toe te voegen" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "U kunt alleen nummers naar slimme blokken toevoegen." + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten." + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "Selecteer een cursorpositie op de tijdlijn." + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "U hebt de nummers nog niet toegevoegd" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "U heb niet alle afspeellijsten toegevoegd" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "U nog niet toegevoegd een slimme blokken" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "U hebt webstreams nog niet toegevoegd" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "Informatie over nummers" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "Meer informatie over afspeellijsten" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "Informatie over slimme blokken" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "Meer informatie over webstreams" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "Klik op 'Nieuw' te maken." + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "toevoegen" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "Bewerken" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "verwijderen" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "Metagegevens bewerken" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "Toevoegen aan geselecteerde Toon" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "Selecteer" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "Selecteer deze pagina" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "Hef de selectie van deze pagina" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "Alle selecties opheffen" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "Gepland" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "track" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Afspeellijsten" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Titel" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Aangemaakt door" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "Bit Rate" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "Componist" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "Dirigent" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright:" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "Encoded Bij" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Genre" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "label" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Taal" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "Laatst Gewijzigd" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "Laatst gespeeld" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Lengte" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "Mood" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "Eigenaar" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "Herhalen Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "Sample Rate" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "Track nummer" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "Uploaded" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "Website:" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "Jaar" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Bezig met laden..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Alle" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "Bestanden" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Afspeellijsten" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "slimme blokken" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "Web Streams" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "Onbekend type" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "Wilt u de geselecteerde gegevens werkelijk verwijderen?" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "Uploaden in vooruitgang..." + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "Gegevens op te halen van de server..." + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "Weergeven" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "foutcode" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "Fout msg:" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "Invoer moet een positief getal" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "Invoer moet een getal" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "Invoer moet worden in de indeling: jjjj-mm-dd" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "Invoer moet worden in het formaat: hh:mm:ss.t" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "U zijn momenteel het uploaden van bestanden. %sGoing naar een ander scherm wordt het uploadproces geannuleerd. %sAre u zeker dat u wilt de pagina verlaten?" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "Open Media opbouw" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "Gelieve te zetten in een tijd '00:00 (.0)'" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "Dynamische blok is niet previewable" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "Beperk tot:" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "Afspeellijst opgeslagen" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "Afspeellijst geschud" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "Airtime is onzeker over de status van dit bestand. Dit kan gebeuren als het bestand zich op een externe schijf die is ontoegankelijk of het bestand bevindt zich in een map die is niet '' meer bekeken." + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "Luisteraar rekenen op %s: %s" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "Stuur me een herinnering in 1 week" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "Herinner me nooit" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "Ja, help Airtime" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "Afbeelding moet een van jpg, jpeg, png of gif" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "Een statisch slimme blok zal opslaan van de criteria en de inhoud blokkeren onmiddellijk te genereren. Dit kunt u bewerken en het in de bibliotheek te bekijken voordat u deze toevoegt aan een show." + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "Een dynamische slimme blok bespaart alleen de criteria. Het blok inhoud zal krijgen gegenereerd op het toe te voegen aan een show. U zal niet zitten kundig voor weergeven en bewerken van de inhoud in de mediabibliotheek." + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "slimme blok geschud" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "slimme blok gegenereerd en opgeslagen criteria" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "Smart blok opgeslagen" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "Wordt verwerkt..." + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "Selecteer modifier" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "bevat" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "bevat niet" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "is" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "is niet gelijk aan" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "Begint met" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "Eindigt op" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "is groter dan" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "is minder dan" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "in het gebied" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "Genereren" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "Kies opslagmap" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "Kies map voor bewaken" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" +"Weet u zeker dat u wilt wijzigen de opslagmap?\n" +"Hiermee verwijdert u de bestanden uit uw Airtime bibliotheek!" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Mediamappen beheren" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "Dit pad is momenteel niet toegankelijk." + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt." + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "Aangesloten op de streaming server" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "De stream is uitgeschakeld" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "Het verkrijgen van informatie van de server ..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "Kan geen verbinding maken met de streaming server" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "Schakel deze optie in om metagegevens voor OGG streams (stream metadata is de tracktitel, artiest, en Toon-naam die wordt weergegeven in een audio-speler). VLC en mplayer hebben een ernstige bug wanneer spelen een OGG/VORBIS stroom die metadata informatie ingeschakeld heeft: ze de stream zal verbreken na elke song. Als u een OGG stream gebruikt en uw luisteraars geen ondersteuning voor deze Audiospelers vereisen, dan voel je vrij om deze optie." + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten." + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'." + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "Waarschuwing: Dit zal opnieuw opstarten van uw stream en een korte dropout kan veroorzaken voor uw luisteraars!" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken." + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "Geen resultaat gevonden" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken." + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "Geef aangepaste verificatie die alleen voor deze show werken zal." + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "De Toon-exemplaar bestaat niet meer!" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "Waarschuwing: Shows kunnen niet opnieuw gekoppelde" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "tijdzone is standaard ingesteld op de tijdzone station. Shows in de kalender wordt getoond in uw lokale tijd gedefinieerd door de Interface tijdzone in uw gebruikersinstellingen." + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "Show" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "Show Is leeg" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "1m" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "5m" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "10m" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "15m" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "30m" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "60m" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "Retreiving gegevens van de server..." + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "Deze show heeft geen geplande inhoud." + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "Deze show is niet volledig gevuld met inhoud." + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "Januari" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "Februari" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "maart" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "april" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "mei" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "juni" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "juli" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "augustus" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "september" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "oktober" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "november" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "december" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "jan" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "feb" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "maa" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "apr" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "jun" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "jul" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "aug" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "sep" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "okt" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "nov" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "dec" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "vandaag" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "dag" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "week" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "maand" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "zondag" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "maandag" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "dinsdag" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "woensdag" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "donderdag" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "vrijdag" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "zaterdag" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "zon" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "ma" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "di" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "wo" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "do" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "vrij" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "zat" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling." + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "Annuleer Huidige Show?" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "Stop de opname huidige show?" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "oke" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "Inhoud van Show" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "Alle inhoud verwijderen?" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "verwijderd geselecteerd object(en)?" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Start" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "einde" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "Duur" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "Filteren op" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "of" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "records" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Infaden" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "uitfaden" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "Show leeg" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "Opname van de Line In" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "Track Voorbeeld" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "Niet gepland buiten een show." + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "1 Item verplaatsen" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "%s Items verplaatsen" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "opslaan" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "anuleren" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "Fade Bewerken" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "Cue Bewerken" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "Selecteer alles" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "Niets selecteren" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "Trim overboekte shows" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "Geselecteerde geplande items verwijderen" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "Jump naar de huidige playing track" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "Annuleren van de huidige show" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "Open bibliotheek toevoegen of verwijderen van inhoud" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "Toevoegen / verwijderen van inhoud" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "In gebruik" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "hardeschijf" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "Zoeken in:" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "open" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Admin" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Programmabeheer" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "gast" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "Gasten kunnen het volgende doen:" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "Schema weergeven" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "Weergave show content" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "DJ's kunnen het volgende doen:" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "Toegewezen Toon inhoud beheren" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "Mediabestanden importeren" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "Maak afspeellijsten, slimme blokken en webstreams" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "De inhoud van hun eigen bibliotheek beheren" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "Bekijken en beheren van inhoud weergeven" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "Schema shows" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "Alle inhoud van de bibliotheek beheren" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "Beheerders kunnen het volgende doen:" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "Voorkeuren beheren" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "Gebruikers beheren" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "Bewaakte mappen beheren" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Ondersteuning feedback verzenden" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "Bekijk systeem status" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "Toegang playout geschiedenis" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "Weergave luisteraar status" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "Geef weer / verberg kolommen" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "Van {from} tot {to}" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "kbps" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "jjjj-mm-dd" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "hh:mm:ss.t" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "kHz" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "Zo" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "Ma" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "Di" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "Wo" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "Do" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "Vr" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "Za" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Sluiten" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Uur" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "Minuut" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "Klaar" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "Selecteer bestanden" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "Bestanden toevoegen" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "Stop upload" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "Begin upload" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "Bestanden toevoegen" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "Geüploade %d/%d bestanden" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "N/B" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "Sleep bestanden hierheen." + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "Bestandsextensie fout" + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "Bestandsgrote fout." + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "Graaf bestandsfout." + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "Init fout." + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "HTTP fout." + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "Beveiligingsfout." + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "Generieke fout." + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "IO fout." + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "Bestand: %s" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "%d bestanden in de wachtrij" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "File: %f, grootte: %s, max bestandsgrootte: %m" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "Upload URL zou verkeerd kunnen zijn of bestaat niet" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "Fout: Bestand is te groot" + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "Fout: Niet toegestane bestandsextensie " + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Standaard instellen" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "Aangemaakt op:" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "Geschiedenis Record bewerken" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "geen show" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "Rij gekopieerde %s %s naar het Klembord" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent." + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "Nieuw Show" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "Nieuwe logboekvermelding" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Beschrijving" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "Ingeschakeld" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "Voer uw gebruikersnaam en wachtwoord." + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd." + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "U bekijkt een oudere versie van %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "U kunt nummers toevoegen aan dynamische blokken." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)" + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "U kunt alleen nummers toevoegen aan smart blok." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Naamloze afspeellijst" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Naamloze slimme block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Onbekende afspeellijst" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Voorkeuren bijgewerkt." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Stream vaststelling van bijgewerkte." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "pad moet worden opgegeven" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Probleem met Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "Verzoek methode niet geaccepteerd" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "Rebroadcast van show %s van %s in %s" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Selecteer cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Cursor verwijderen" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "show bestaat niet" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "gebruiker Succesvol Toegevoegd" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "gebruiker Succesvol bijgewerkt" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Instellingen met succes bijgewerkt!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Naamloze Webstream" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Webstream opgeslagen." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Ongeldige formulierwaarden." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Ongeldig teken ingevoerd" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Dag moet worden opgegeven" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Tijd moet worden opgegeven" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "verificatie %s gebruiken:" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Gebruik aangepaste verificatie:" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Aangepaste gebruikersnaam" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Aangepaste wachtwoord" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "Veld Gebruikersnaam mag niet leeg." + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "veld wachtwoord mag niet leeg." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Opnemen vanaf de lijn In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dagen" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "link" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Herhaal Type:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "wekelijks" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "elke 2 weken" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "elke 3 weken" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "elke 4 weken" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "per maand" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Selecteer dagen:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Herhaal door:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "dag van de maand" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Dag van de week" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "datum einde" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Geen einde?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Einddatum moet worden na begindatum ligt" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Selecteer een Herhaal dag" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "achtergrond kleur" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "tekst kleur" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "naam" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Zonder titel show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "genre:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Omschrijving:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' past niet de tijdnotatie 'UU:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Looptijd:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "tijdzone:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "herhaalt?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "kan niet aanmaken show in het verleden weergeven" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Start datum/tijd van de show die is al gestart wijzigen niet" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Eind datum/tijd mogen niet in het verleden" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Geen duur hebben < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Kan niet hebben duur 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Duur groter is dan 24h kan niet hebben" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "kan Niet gepland overlappen shows" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "zoek gebruikers" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "gebuikersnaam" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "wachtwoord" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Wachtwoord verifiëren:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "voornaam" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "achternaam" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "e-mail" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "mobiel nummer" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "skype" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Gebruiker Type :" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Login naam is niet uniek." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "datum start" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Titel" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Aangemaakt door" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Jaar" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "label" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "schrijver van een muziekwerk" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Conductor:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Mood:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC nummer:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Taal:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Begintijd" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Eindtijd" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Interface tijdzone:" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "station naam" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Station Logo:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast." + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "Standaardduur Crossfade (s):" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "standaard fade in (s):" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "standaard fade uit (s):" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "station tijdzone" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "Week start aan" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "Alleen cijfers zijn toegestaan." + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Inloggen" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "wachtwoord" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "Bevestig nieuw wachtwoord" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "gebuikersnaam" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Reset wachtwoord" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "Nu spelen" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "al mij shows" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Selecteer criteria" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "Uren" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuten" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "artikelen" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamisch" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "status" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Shuffle afspeellijst inhoud" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Shuffle" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limiet mag niet meer dan 24 uur" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "De waarde moet een geheel getal" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 is de grenswaarde max object die kunt u instellen" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "U moet Criteria en Modifier selecteren" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Lengte' moet in ' 00:00:00 ' formaat" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "De waarde moet worden numerieke" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "De waarde moet minder dan 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "De waarde moet kleiner zijn dan %s tekens" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Waarde kan niet leeg" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbis Metadata" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "Stream Label:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "Artiest - Titel" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "Show - Artiest - titel" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "Station naam - Show naam" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "Off Air Metadata" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "Inschakelen Replay Gain" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "Replay Gain Modifier" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Ingeschakeld" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit Rate:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Service Type:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "kanalen:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1- Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "poort" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "naam" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Aankoppelpunt" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "admin gebuiker " + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "admin wachtwoord " + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server kan niet leeg zijn" + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "poort kan niet leeg zijn" + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount kan niet leeg zijn met Icecast server" + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "mappen importeren" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Gecontroleerde mappen:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Niet een geldige map" + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Waarde is vereist en mag niet leeg zijn" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' past niet in de datumnotatie '%format%'" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is minder dan %min% tekens lang" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is meer dan %max% karakters lang" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen." + +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5356,7 +3911,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5364,7 +3919,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5373,20 +3928,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s wachtwoord Reset" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Het Cue in en cue uit null zijn." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het" + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Niet instellen cue in groter dan cue uit." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Niet instellen cue uit op kleiner zijn dan het cue in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s is al bekeken." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s bevat geneste gevolgde directory: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s is niet een geldige directory." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s bestaat niet in de lijst met gevolgde." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Selecteer land" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Items uit gekoppelde toont kan niet verplaatsen" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Het schema dat u aan het bekijken bent is verouderd!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "U zijn niet toegestaan om te plannen show %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "U kunt bestanden toevoegen aan het opnemen van programma's." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "De show %s is voorbij en kan niet worden gepland." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "De show %s heeft al eerder zijn bijgewerkt!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Een geselecteerd bestand bestaat niet!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Shows kunnen hebben een maximale lengte van 24 uur." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5394,147 +4067,237 @@ msgstr "" "Niet gepland overlappende shows.\n" "Opmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Rebroadcast van %s van %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Lengte moet groter zijn dan 0 minuten" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Length should be of form \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL should be of form \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL moet 512 tekens of minder" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Geen MIME-type gevonden voor webstream." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Webstream naam mag niet leeg zijn" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Could not parse XSPF playlist" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Kon niet ontleden PLS afspeellijst" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Kon niet ontleden M3U playlist" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Niet herkende type stream: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Record bestand bestaat niet" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Weergave opgenomen bestand Metadata" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Schema Tracks" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "Wissen show" + +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "Annuleren show" + +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "Aanleg bewerken" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Bewerken van Show" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "Exemplaar verwijderen" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "Exemplaar verwijderen en alle volgende" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Toestemming geweigerd" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Kan niet slepen en neerzetten herhalende shows" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Een verleden Show verplaatsen niet" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Niet verplaatsen show in verleden" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moet wachten 1 uur opnieuw uitzenden.." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "track" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Gespeeld" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calender" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "gebruikers" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "streams" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Geschiedenis sjablonen" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "luister status" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Aan de slag" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Gebruikershandleiding" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "View track" -#~ msgstr "Weergave track" +#~ msgid " to " +#~ msgstr "tot" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "De lengte van het gewenste blok zal niet worden bereikt als Airtime niet kunt vinden genoeg unieke nummers aan uw criteria voldoen. Schakel deze optie in als u wilt toestaan tracks meerdere keren worden toegevoegd aan het slimme blok." +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Als Airtime zich achter een router of firewall, u wellicht configureren poort forwarding en deze informatie zal worden onjuist. In dit geval zal u wilt dit veld handmatig worden bijgewerkt zodat het toont de juiste host/poort/mount die uw DJ wilt verbinden. Het toegestane bereik is tussen 1024 en 49151." +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Voor meer informatie, lees de %sAirtime handleiding%s" +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)." -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Programa Managers kunnen het volgende doen:" +#~ msgid "(Required)" +#~ msgstr "(Vereist)" -#~ msgid "Support setting updated." -#~ msgstr "Instelling bijgewerkt ondersteunt." +#~ msgid "(Your radio station website)" +#~ msgstr "(Uw radio station website)" -#~ msgid "Support Feedback" -#~ msgstr "Ondersteuning Feedback" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Typ de tekens die u ziet in de afbeelding hieronder." +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Phone:" -#~ msgstr "Telefoon" +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Station Web Site:" -#~ msgstr "Station Web Site:" +#~ msgid "About" +#~ msgstr "Over" -#~ msgid "Country:" -#~ msgstr "Land:" +#~ msgid "Add New Field" +#~ msgstr "Nieuw veld toevoegen" -#~ msgid "City:" -#~ msgstr "plaats" +#~ msgid "Add more elements" +#~ msgstr "Meer elementen toevoegen" -#~ msgid "Station Description:" -#~ msgstr "Beschrijving van het station:" +#~ msgid "Add this show" +#~ msgstr "Deze show toevoegen" -#~ msgid "Promote my station on %s" -#~ msgstr "Promoot mijn station aan %s" +#~ msgid "Additional Options" +#~ msgstr "Extra opties" -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Je moet eens met privacy policy." - -#~ msgid "Default License:" -#~ msgstr "Standaard licentie:" +#~ msgid "Advanced Search Options" +#~ msgstr "Geadvanceerde zoek opties" #~ msgid "All rights are reserved" #~ msgstr "Alle rechten voorbehouden" -#~ msgid "The work is in the public domain" -#~ msgstr "Het werk bestaat uit het publieke domein" +#~ msgid "Audio Track" +#~ msgstr "Audiotrack" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s" + +#~ msgid "Choose Days:" +#~ msgstr "Kies dagen:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Kies show exemplaar" + +#~ msgid "Choose folder" +#~ msgstr "Kies map" + +#~ msgid "City:" +#~ msgstr "plaats" + +#~ msgid "Clear" +#~ msgstr "Wissen" + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Klik in het vak hieronder om uw station op %s." + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden" + +#~ msgid "Country:" +#~ msgstr "Land:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Bestand samenvatting sjabloon maken" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Log werkbladsjabloon maken" #~ msgid "Creative Commons Attribution" #~ msgstr "Creatief Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Naamsvermelding geen afgeleide werken" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Naamsvermelding Gelijk delen" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken" @@ -5542,44 +4305,305 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel" -#~ msgid "Register Airtime" -#~ msgstr "Airtime registreren" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Naamsvermelding Gelijk delen" -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Klik in het vak hieronder om uw station op %s." +#~ msgid "Cue In: " +#~ msgstr "Cue In:" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)" +#~ msgid "Cue Out: " +#~ msgstr "Cue Out:" -#~ msgid "Show me what I am sending " -#~ msgstr "Toon mij wat ik ben verzenden" +#~ msgid "Current Import Folder:" +#~ msgstr "Huidige Import map:" -#~ msgid "Terms and Conditions" -#~ msgstr "Algemene voorwaarden" +#~ msgid "Cursor" +#~ msgstr "Cursor" -#~ msgid "files meet the criteria" -#~ msgstr "bestanden voldoen aan de criteria" +#~ msgid "Default Length:" +#~ msgstr "Standaard lengte:" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)." +#~ msgid "Default License:" +#~ msgstr "Standaard licentie:" -#~ msgid "Your trial expires in" -#~ msgstr "Uw proefperiode verloopt in" +#~ msgid "Disk Space" +#~ msgstr "Hardeschijf ruimte" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Deze versie zal binnenkort verouderd." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dynamische slimme blok" -#~ msgid "This version is no longer supported." -#~ msgstr "Deze versie wordt niet langer ondersteund." +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dynamische slimme blok Criteria:" + +#~ msgid "Empty playlist content" +#~ msgstr "Lege afspeellijst inhoud" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Dynamische blok uitbreiden" + +#~ msgid "Expand Static Block" +#~ msgstr "Statisch blok uitbreiden" + +#~ msgid "Fade in: " +#~ msgstr "Fade in:" + +#~ msgid "Fade out: " +#~ msgstr "Fade out:" + +#~ msgid "File Path:" +#~ msgstr "Bestandspad:" + +#~ msgid "File Summary" +#~ msgstr "Bestand samenvatting" + +#~ msgid "File Summary Templates" +#~ msgstr "Bestand samenvatting sjablonen" + +#~ msgid "File import in progress..." +#~ msgstr "Bestand importeren in vooruitgang..." + +#~ msgid "Filter History" +#~ msgstr "Filter geschiedenis" + +#~ msgid "Find" +#~ msgstr "Zoeken" + +#~ msgid "Find Shows" +#~ msgstr "zoek Shows" + +#~ msgid "First Name" +#~ msgstr "Voornaam" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Voor meer informatie, lees de %sAirtime handleiding%s" + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Als Airtime zich achter een router of firewall, u wellicht configureren poort forwarding en deze informatie zal worden onjuist. In dit geval zal u wilt dit veld handmatig worden bijgewerkt zodat het toont de juiste host/poort/mount die uw DJ wilt verbinden. Het toegestane bereik is tussen 1024 en 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC nummer:" + +#~ msgid "Last Name" +#~ msgstr "Achternaam" + +#~ msgid "Length:" +#~ msgstr "Lengte:" + +#~ msgid "Limit to " +#~ msgstr "Beperken tot" + +#~ msgid "Listen" +#~ msgstr "Luister" + +#~ msgid "Live Stream Input" +#~ msgstr "Live Stream Input" + +#~ msgid "Live stream" +#~ msgstr "Live stream" + +#~ msgid "Log Sheet" +#~ msgstr "Log blad" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Log blad sjablonen" + +#~ msgid "Logout" +#~ msgstr "loguit" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!" + +#~ msgid "Manage Users" +#~ msgstr "Gebruikers beheren" + +#~ msgid "Master Source" +#~ msgstr "Master bron" + +#~ msgid "New File Summary Template" +#~ msgstr "Nieuwe bestand samenvatting sjabloon" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Nieuwe Log werkbladsjabloon" + +#~ msgid "New User" +#~ msgstr "Nieuwe gebruiker" + +#~ msgid "New password" +#~ msgstr "Nieuw wachtwoord" + +#~ msgid "Next:" +#~ msgstr "Volgende:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Geen bestand samenvatting sjablonen" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Geen Log blad sjablonen" + +#~ msgid "No open playlist" +#~ msgstr "Geen open afspeellijst" + +#~ msgid "No webstream" +#~ msgstr "Geen webstream" + +#~ msgid "OK" +#~ msgstr "Oke" + +#~ msgid "ON AIR" +#~ msgstr "ON AIR" + +#~ msgid "Original Length:" +#~ msgstr "Oorspronkelijke lengte:" + +#~ msgid "Page not found!" +#~ msgstr "Pagina niet gevonden!" + +#~ msgid "Phone:" +#~ msgstr "Telefoon" + +#~ msgid "Play" +#~ msgstr "Play" + +#~ msgid "Playlist Contents: " +#~ msgstr "Inhoud van de afspeellijst:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Afspeellijst crossfade" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder." #~ msgid "Please upgrade to " #~ msgstr "Gelieve te upgraden naar" +#~ msgid "Previous:" +#~ msgstr "Vorige:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Programa Managers kunnen het volgende doen:" + +#~ msgid "Promote my station on %s" +#~ msgstr "Promoot mijn station aan %s" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime registreren" + #~ msgid "Remove track" #~ msgstr "Nummer verwijderen" -#~ msgid "Upload track" -#~ msgstr "Uploaden van track" +#~ msgid "Remove watched directory" +#~ msgstr "gecontroleerde map verwijderen" + +#~ msgid "Repeat Days:" +#~ msgstr "Herhaal dagen:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)" + +#~ msgid "Sample Rate:" +#~ msgstr "Sample Rate:" + +#~ msgid "Save playlist" +#~ msgstr "Afspeellijst opslaan" + +#~ msgid "Select stream:" +#~ msgstr "Selecteer stream:" + +#~ msgid "Set" +#~ msgstr "Instellen" + +#~ msgid "Set Cue In" +#~ msgstr "Set Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Set Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Standaardsjabloon" + +#~ msgid "Share" +#~ msgstr "Deel" + +#~ msgid "Show Source" +#~ msgstr "Bron weergeven" + +#~ msgid "Show Summary" +#~ msgstr "Samenvatting weergeven" + +#~ msgid "Show Waveform" +#~ msgstr "Show Waveform" + +#~ msgid "Show me what I am sending " +#~ msgstr "Toon mij wat ik ben verzenden" + +#~ msgid "Shuffle playlist" +#~ msgstr "Shuffle afspeellijst" + +#~ msgid "Source Streams" +#~ msgstr "Bron Streams" + +#~ msgid "Static Smart Block" +#~ msgstr "Statisch slimme blok" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statisch slimme blok inhoud:" + +#~ msgid "Station Description:" +#~ msgstr "Beschrijving van het station:" + +#~ msgid "Station Web Site:" +#~ msgstr "Station Web Site:" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "Stream " +#~ msgstr "Stream" + +#~ msgid "Stream Settings" +#~ msgstr "Instellingen voor stream" + +#~ msgid "Stream URL:" +#~ msgstr "Stream URL:" + +#~ msgid "Stream URL: " +#~ msgstr "Stream URL:" + +#~ msgid "Style" +#~ msgstr "Stijl" + +#~ msgid "Support Feedback" +#~ msgstr "Ondersteuning Feedback" + +#~ msgid "Support setting updated." +#~ msgstr "Instelling bijgewerkt ondersteunt." + +#~ msgid "Terms and Conditions" +#~ msgstr "Algemene voorwaarden" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "De lengte van het gewenste blok zal niet worden bereikt als Airtime niet kunt vinden genoeg unieke nummers aan uw criteria voldoen. Schakel deze optie in als u wilt toestaan tracks meerdere keren worden toegevoegd aan het slimme blok." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler" + +#~ msgid "The work is in the public domain" +#~ msgstr "Het werk bestaat uit het publieke domein" + +#~ msgid "This version is no longer supported." +#~ msgstr "Deze versie wordt niet langer ondersteund." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Deze versie zal binnenkort verouderd." #~ msgid "" #~ "To configure and use the embeddable player you must:

\n" @@ -5589,6 +4613,10 @@ msgstr "" #~ " Configureren en de integreerbare speler u moet gebruiken:

1. Inschakelen ten minste één MP3, AAC en OGG stream onder systeem->Streams
\n" #~ "2. De openbare LibreTime API inschakelen onder systeem->voorkeuren" +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s." + #~ msgid "" #~ "To use the embeddable weekly schedule widget you must:

\n" #~ " Enable the Public LibreTime API under System -> Preferences" @@ -5596,8 +4624,94 @@ msgstr "" #~ "De integreerbare per schema widget u moet gebruiken:

\n" #~ "de openbare LibreTime API inschakelen onder systeem->voorkeuren" +#~ msgid "Track:" +#~ msgstr "track" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Typ de tekens die u ziet in de afbeelding hieronder." + +#~ msgid "Update Required" +#~ msgstr "Update vereist" + +#~ msgid "Update show" +#~ msgstr "Bijwerken van show" + +#~ msgid "Upload track" +#~ msgstr "Uploaden van track" + +#~ msgid "User Type" +#~ msgstr "Gebruikerstype" + +#~ msgid "View track" +#~ msgstr "Weergave track" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Welkom tot %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'." + +#~ msgid "What" +#~ msgstr "Wat" + +#~ msgid "When" +#~ msgstr "Wanneer" + +#~ msgid "Who" +#~ msgstr "Wie" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Niet bekijkt u alle Mediamappen." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Je moet eens met privacy policy." + +#~ msgid "Your trial expires in" +#~ msgstr "Uw proefperiode verloopt in" + +#~ msgid "and" +#~ msgstr "en" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "bestanden voldoen aan de criteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "Max volume" + +#~ msgid "mute" +#~ msgstr "dempen" + +#~ msgid "next" +#~ msgstr "volgende" + +#~ msgid "or" +#~ msgstr "of" + +#~ msgid "pause" +#~ msgstr "pauze" + +#~ msgid "play" +#~ msgstr "spelen" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "Gelieve te zetten in een tijd in seconden '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden" +#~ msgid "previous" +#~ msgstr "vorige" + +#~ msgid "stop" +#~ msgstr "Stop" + +#~ msgid "unmute" +#~ msgstr "microfoon" diff --git a/legacy/locale/pl_PL/LC_MESSAGES/libretime.po b/legacy/locale/pl_PL/LC_MESSAGES/libretime.po index c14939b1d..9e3eae964 100644 --- a/legacy/locale/pl_PL/LC_MESSAGES/libretime.po +++ b/legacy/locale/pl_PL/LC_MESSAGES/libretime.po @@ -1,2496 +1,1604 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # thedead4fun , 2015 # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/sourcefabric/airtime/language/pl_PL/)\n" +"Language-Team: Polish (Poland)\n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Zaloguj" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Rok %s musi być w przedziale od 1753 do 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nowe hasło" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Wprowadź i potwierdź swoje hasło w poniższych polach" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Historia odtwarzania" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Zarządzaj folderami mediów" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Ustawienia strumienia" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Zapisz" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Strumień" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Wymagane)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Opcje dodatkowe" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "W odtwarzaczu słuchacza wyświetli sie nastepujaca informacja:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Strona internetowa Twojej stacji)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL strumienia:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "do" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Wybierz folder" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Ustaw" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Aktualny folder importu:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Dodaj" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s nie jest poprawną datą" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Usuń obserwowany katalog." - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Nie obserwujesz w tej chwili żadnych folderów" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Wybierz dni:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Usuń" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Dni powtarzania:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Znajdź audycję" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtruj Historię" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Źródło audycji" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Źródło Nadrzędne" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s nie jest prawidłowym czasem" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Zarządzaj Użytkownikami" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Nowy Użytkownik" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Nazwa użytkownika" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Imię" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Nazwisko" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Typ użytkownika" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Zwiększ bok statyczny" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Zwiększ blok dynamiczny" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nazwa:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Opis:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Czas trwania:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Wymieszaj listę odtwarzania" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Przemieszaj" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Płynne przenikanie utworów na liście dotwarzania" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Wyciszanie [fade out]:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Anuluj" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Zapisz listę odtwarzania" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Brak otwartej listy odtwarzania" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Zgłaśnianie [fade in]:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Zgłaśnianie [Cue in]:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Wyciszanie [Cue out]:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Oryginalna długość:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:47 +msgid "Greek" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "W użyciu" +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Wszystko" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Zaawansowane opcje wyszukiwania" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Opis" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL strumienia:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Domyślna długość:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Brak webstreamu" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Zamknij" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Nazwa" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Twórca" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Język" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Prawa autorskie" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Importowanie plików w toku..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Tytuł:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Autor:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Utwór:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Długość: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Częstotliwość próbkowania:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Nastrój:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Rodzaj:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Rok:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Wydawnictwo:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Kompozytor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Dyrygent/Pod batutą:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Prawa autorskie:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Numer Isrc:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Strona internetowa:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Język:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Ścieżka pliku:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Web Stream" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Smart block dynamiczny" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Smart block statyczny" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Ścieżka audio" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Zawartość listy odtwarzania:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Zawartość statycznego Smart Blocka:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Kryteria dynamicznego Smart Blocku " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Ogranicz(enie) do:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "Adres URL" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Status" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Miejsce na dysku " - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "poprzedni" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Kalendarz" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "play" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pauza" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "następny" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "wycisz" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "włącz głos" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "maksymalna głośność" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Wymagana aktualizacja" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "By odtworzyć medium, należy zaktualizować przeglądarkę do najnowszej wersji bądź zainstalowac aktualizację %sFlash plugin%s" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Informacje" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "W celu uzyskania szczegółowej pomocy, skorzystaj z %suser manual%s" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Transmisja na żywo" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Podziel się" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Wybierz strumień:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Dodaj audycję" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Aktualizuj audycję" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Co" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Kiedy" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Wejście Strumienia \"Na żywo\"" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Kto" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Styl" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Rozpocznij" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Tytuł" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Długość" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Gatunek" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Wydawnictwo" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Poprzedni:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Następny:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Strumienie źródłowe" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "Na antenie" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Słuchaj" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Wyloguj" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Listy odtwarzania" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Blocki" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Użytkownicy" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Strumienie" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Status" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Historia odtwarzania" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Statystyki słuchaczy" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Pomoc" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Jak zacząć" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Instrukcja użytkowania" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Nie znaleziono strony!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Wygląda na to, że strona, której szukasz nie istnieje" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Odtwrzacz " - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Zgłaśnianie [Fade In]" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Wyciszanie [Fade out]" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Nie masz uprawnień do odłączenia żródła" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Źródło nie jest podłączone do tego wyjścia." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Nie masz uprawnień do przełączenia źródła." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream bez nazwy" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Zapisano webstream" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Nieprawidłowe wartości formularzy" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Użytkownik został dodany poprawnie!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Użytkownik został poprawnie zaktualizowany!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Ustawienia zostały poprawnie zaktualizowane!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Podgląd" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Wybierz kursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Usuń kursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Usuń" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "audycja nie istnieje" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Zaktualizowano preferencje." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Zaktualizowano ustawienia strumienia" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "należy okreslić ścieżkę" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem z Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "nie znaleziono %s" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Wystapił błąd" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Dodaj do listy odtwarzania" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Dodaj do smartblocku" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Pobierz" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Skopiuj listę odtwarzania" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Brak dostepnych czynności" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Nie masz uprawnień do usunięcia wybranych elementów" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopia %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Nie masz dostępu do tej lokalizacji" -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Nie masz dostępu do tej lokalizacji." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Złe zapytanie. Nie zaakceprtowano parametru 'mode'" -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Złe zapytanie. Parametr 'mode' jest nieprawidłowy" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Nie masz uprawnień do odłączenia żródła" -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Źródło nie jest podłączone do tego wyjścia." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Nie masz uprawnień do przełączenia źródła." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Przeglądasz starszą wersję %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Nie można dodać ścieżek do bloków dynamicznych" +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)" +msgid "%s not found" +msgstr "nie znaleziono %s" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Utwory mogą być dodane tylko do smartblocku" +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Wystapił błąd" -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy" +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Podgląd" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Lista odtwarzania bez tytułu" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Dodaj do listy odtwarzania" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Smartblock bez tytułu" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Dodaj do smartblocku" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Nieznana playlista" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Usuń" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Pobierz" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Skopiuj listę odtwarzania" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Brak dostepnych czynności" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Nie masz uprawnień do usunięcia wybranych elementów" + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopia %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Upewnij się, że nazwa użytkownika i hasło są poprawne w System->Strumienie." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Odtwrzacz " + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Nagrywanie:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Strumień Nadrzędny" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Transmisja na żywo" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Nic nie zaplanowano" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Aktualna audycja:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Aktualny" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Używasz najnowszej wersji" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Dostępna jest nowa wersja:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Dodaj do bieżącej listy odtwarzania" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Dodaj do bieżącego smart blocku" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Dodawanie 1 elementu" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Dodawanie %s elementów" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "do smart blocków mozna dodawać tylko utwory." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Do list odtwarzania można dodawać tylko utwory, smart blocki i webstreamy" + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Proszę wybrać pozycję kursora na osi czasu." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Dodaj" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Edytuj" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Usuń" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Edytuj Metadane." -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Dodaj do wybranej audycji" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Zaznacz" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Zaznacz tę stronę" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Odznacz tę stronę" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Odznacz wszystko" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Czy na pewno chcesz usunąć wybrane elementy?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Tytuł" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Twórca" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Bit Rate" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Kompozytor" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Dyrygent/Pod batutą" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Prawa autorskie" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Kodowane przez" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Gatunek" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Wydawnictwo" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Język" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Ostatnio zmodyfikowany" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Ostatnio odtwarzany" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Długość" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Podobne do" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Nastrój" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Właściciel" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Normalizacja głośności (Replay Gain)" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Wartość próbkowania" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Numer utworu" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Przesłano" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Strona internetowa" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Rok" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Ładowanie" -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Wszystko" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Pliki" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listy odtwarzania" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Blocki" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Web Stream" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Nieznany typ:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Czy na pewno chcesz usunąć wybrany element?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Wysyłanie w toku..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Pobieranie danych z serwera..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Kod błędu:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Komunikat błędu:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Podana wartość musi być liczbą dodatnią" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Podana wartość musi być liczbą" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Podana wartość musi mieć format yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Podana wartość musi mieć format hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Aktualnie dodajesz pliki. %sPrzejście do innej strony przerwie ten proces. %sCzy na pewno chcesz przejść do innej strony?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "Wprowadź czas w formacie: '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Twoja przeglądarka nie obsługuje odtwarzania plików tego typu:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Podgląd bloku dynamicznego nie jest możliwy" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Ograniczenie do:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Lista odtwarzania została zapisana" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Playlista została przemieszana" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Airtime nie może odczytać statusu pliku. Może się tak zdarzyć, gdy plik znajduje się na zdalnym dysku, do którego aktualnie nie ma dostępu lub znajduje się w katalogu, który nie jest już \"obserwowany\"." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Licznik słuchaczy na %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Przypomnij mi za 1 tydzień" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Nie przypominaj nigdy" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Tak, wspieraj Airtime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Obraz musi mieć format jpg, jpeg, png lub gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Statyczny smart block będzie zapisywał kryteria i zawartość bezpośrednio, co umożliwia edycję i wyświetlanie go w bibliotece, przed dodaniem do audycji." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Dynamiczny smart block zapisuje tylko kryteria. Jego zawartość będzie generowana automatycznie po dodaniu go do audycji. Nie będzie można go wyświetlać i edytować w zawartości biblioteki." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart blocku został przemieszany" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Utworzono smartblock i zapisano kryteria" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Smart block został zapisany" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Przetwarzanie..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Wybierz modyfikator" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "zawiera" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "nie zawiera" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "to" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "to nie" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "zaczyna się od" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "kończy się" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "jest większa niż" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "jest mniejsza niż" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "mieści się w zakresie" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Utwórz" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Wybierz ścieżkę do katalogu importu" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Wybierz katalog do obserwacji" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2498,2855 +1606,2301 @@ msgstr "" "Czy na pewno chcesz zamienić ścieżkę do katalogu importu\n" "Wszystkie pliki z biblioteki Airtime zostaną usunięte." -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Zarządzaj folderami mediów" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Czy na pewno chcesz usunąć katalog z listy katalogów obserwowanych?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Ściezka jest obecnie niedostepna." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "" -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Połączono z serwerem streamingu" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Strumień jest odłączony" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Pobieranie informacji z serwera..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Nie można połączyć z serwerem streamującym" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Zaznacz tę opcję w celu włączenia metadanych dla strumieni OGG (metadane strumieniowe to tytuł ścieżki, artysta i nazwa audycji, ktróre wyświetlają się w odtwarzaczu audio). VLC oraz mplayer mają problem z odtwarzaniem strumienia OGG/Vorbis, których metadane zostały udostępnione- odłączają się one od strumenia po każdej piosence. Jeśli używasz strumeinia OGG, a słuchacze nie żądają mozliwości odtwarzania w tych odtwarzaczach, wówczas można udostepnić tę opcję" -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "To pole służy do automatycznego wyłączenia źródła nadrzędnego/źródła audycji po jego odłączeniu." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "To pole służy automatycznego uruchomienia źródła nadrzędnego/źródła audycji na połączeniu źródłowym" -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Jesli serwer Icecast wymaga nazwy użytkownika \"source\", pole to może zostać puste" -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Jeśli klient nie żąda nazwy uzytkownika, zawartośc tego pola powinna być \"source\"" -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Nazwa uzytkownika i hasło administartora w programie Icecast/ SHOUTcast w celu uzyskania dostępu do statystyki słuchalności" -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Nie znaleziono wyników" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Ta funkcja działa w programach wg tych samych zasad bezpiezeństwa: jedynie użytkownicy przypisani do audcyji mogą się podłączyć." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Ustal własne uwierzytelnienie tylko dla tej audycji." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Instancja audycji już nie istnieje." -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "" -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Audycja" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Audycja jest pusta" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1 min" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5 min" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10 min" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15 min" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30 min" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60 min" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Odbieranie danych z serwera" -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Ta audycja nie ma zawartości" -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Brak pełnej zawartości tej audycji." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Styczeń" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Luty" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Marzec" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Kwiecień" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Maj" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Czerwiec" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Lipiec" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Sierpień" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Wrzesień" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Październik" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Listopad" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Grudzień" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Sty" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Lut" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Kwi" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Cze" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Lip" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Sie" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Wrz" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Paź" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Lis" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Gru" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Niedziela" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Poniedziałek" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Wtorek" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Środa" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Czwartek" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Piątek" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Sobota" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Nie" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Pon" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Wt" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Śr" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Czw" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Pt" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sob" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Audycje o czasie dłuższym niż zaplanowany będą przerywane przez następne ." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Skasować obecną audycję?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Przerwać nagrywanie aktualnej audycji?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ok" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Zawartośc audycji" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Usunąć całą zawartość?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Skasować wybrane elementy?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Rozpocznij" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Zakończ" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Czas trwania" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Zgłaśnianie [Fade In]" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Wyciszanie [Fade out]" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Audycja jest pusta" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Nagrywaanie z wejścia liniowego" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Podgląd utworu" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Nie ma możliwości planowania poza audycją." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Przenoszenie 1 elementu" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Przenoszenie %s elementów" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Zapisz" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Anuluj" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Zaznacz wszystko" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Odznacz wszystkie" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Usuń wybrane elementy" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Przejdź do obecnie odtwarzanej ściezki" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Skasuj obecną audycję" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Otwóz bibliotekę w celu dodania bądź usunięcia zawartości" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Dodaj/usuń zawartość" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "W użyciu" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Dysk" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Sprawdź" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Otwórz" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Administrator" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "Prowadzący" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Menedżer programowy" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Gość" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Goście mają mozliwość:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Przeglądanie harmonogramu" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Przeglądanie zawartości audycji" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "Prowadzący ma możliwość:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Zarządzać przypisaną sobie zawartością audycji" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Importować pliki mediów" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Tworzyć playlisty, smart blocki i webstreamy" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Zarządzać zawartością własnej biblioteki" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Przeglądać i zarządzać zawartością audycji" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Planować audycję" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Zarządzać całą zawartością biblioteki" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Administrator ma mozliwość:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Zarządzać preferencjami" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Zarządzać użytkownikami" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Zarządzać przeglądanymi katalogami" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Wyślij informację zwrotną" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Sprawdzać status systemu" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Przeglądać historię odtworzeń" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Sprawdzać statystyki słuchaczy" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Pokaż/ukryj kolumny" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Od {from} do {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Nd" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Pn" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Wt" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Śr" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Cz" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Pt" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "So" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Zamknij" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Godzina" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuta" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Gotowe" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Wybierz pliki" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Dodaj pliki do kolejki i wciśnij \"start\"" -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Dodaj pliki" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Zatrzymaj przesyłanie" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Rozpocznij przesyłanie" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Dodaj pliki" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Dodano pliki %d%d" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "Nie dotyczy" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Przeciągnij pliki tutaj." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Błąd rozszerzenia pliku." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Błąd rozmiaru pliku." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Błąd liczenia plików" -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Błąd inicjalizacji" -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "Błąd HTTP." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Błąd zabezpieczeń." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Błąd ogólny." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "Błąd I/O" -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Plik: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d plików oczekujących" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Plik: %f, rozmiar %s, maksymalny rozmiar pliku: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "URL nie istnieje bądź jest niewłaściwy" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Błąd: plik jest za duży:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Błąd: nieprawidłowe rozszerzenie pliku:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "Skopiowano %srow%s do schowka" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sPrint view%s Użyj j funkcji drukowania na swojej wyszykiwarce. By zakończyć, wciśnij 'escape'." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Opis" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Włączone" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Wyłączone" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Przeglądasz starszą wersję %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Nie można dodać ścieżek do bloków dynamicznych" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)" + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Utwory mogą być dodane tylko do smartblocku" + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Lista odtwarzania bez tytułu" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Smartblock bez tytułu" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Nieznana playlista" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Zaktualizowano preferencje." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Zaktualizowano ustawienia strumienia" + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "należy okreslić ścieżkę" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem z Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Retransmisja audycji %s z %s o %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Wybierz kursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Usuń kursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "audycja nie istnieje" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Przeglądaj metadane nagrania" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Użytkownik został dodany poprawnie!" -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Użytkownik został poprawnie zaktualizowany!" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Ustawienia zostały poprawnie zaktualizowane!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Webstream bez nazwy" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Zapisano webstream" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Edytuj audycję" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Nieprawidłowe wartości formularzy" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Wprowadzony znak jest nieprawidłowy" -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Należy określić dzień" -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Należy określić czas" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji." +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Nie można przenieść audycji archiwalnej" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Nie można przenieść audycji w przeszłość" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Nie można planować nakładających się audycji" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Audycja została usunięta, ponieważ nagranie nie istnieje!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Należy odczekać 1 godzinę przed ponownym odtworzeniem." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Odtwarzane" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Wybierz kryteria" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Częstotliwość próbkowania (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "godzin(y)" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minut(y)" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "elementy" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dynamiczny" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statyczny" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Losowa kolejność odtwarzania" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit nie może być pusty oraz mniejszy od 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit nie może być większy niż 24 godziny" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Wartość powinna być liczbą całkowitą" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Maksymalna liczba elementów do ustawienia to 500" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Należy wybrać kryteria i modyfikator" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Długość powinna być wprowadzona w formacie '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Wartość musi być liczbą" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Wartość powinna być mniejsza niż 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Wartość powinna posiadać mniej niż %s znaków" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Wartość nie może być pusta" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Numer ISRC:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Katalog importu:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Katalogi obserwowane:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Nieprawidłowy katalog" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Typ powtarzania:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "tygodniowo" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "miesięcznie" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Wybierz dni:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Data zakończenia:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Bez czasu końcowego?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Data końcowa musi występować po dacie początkowej" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Pole jest wymagane i nie może być puste" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "%value% nie odpowiada formatowi 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Strefa czasowa:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Powtarzanie?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Nie można utworzyć audycji w przeszłości" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Data lub czas zakończenia nie może być z przeszłości." - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Czas trwania nie może być mniejszy niż 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Czas trwania nie może wynosić 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Czas trwania nie może być dłuższy niż 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Nazwa użytkownika:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Hasło:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Potwierdź hasło:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Imię:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Nazwisko:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Telefon:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Typ użytkownika:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Nazwa użytkownika musi być unikalna." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Zastosuj własne uwierzytelnienie:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Nazwa użytkownika" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Hasło" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Pole nazwy użytkownika nie może być puste." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Pole hasła nie może być puste." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Nagrywać z wejścia liniowego?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Odtwarzać ponownie?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dni" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" msgstr "" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Typ powtarzania:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "tygodniowo" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "miesięcznie" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Wybierz dni:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" msgstr "" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Data rozpoczęcia:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Wprowadzony znak jest nieprawidłowy" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Szukaj Użytkowników:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Prowadzący:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" msgstr "" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Wszystkie moje audycje:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" msgstr "" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Data zakończenia:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Bez czasu końcowego?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Data końcowa musi występować po dacie początkowej" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Kolor tła:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Kolor tekstu:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Należy określić dzień" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nazwa:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Należy określić czas" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Audycja bez nazwy" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "Adres URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Rodzaj:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Opis:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "%value% nie odpowiada formatowi 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Czas trwania:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Strefa czasowa:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Powtarzanie?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Nie można utworzyć audycji w przeszłości" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Data lub czas zakończenia nie może być z przeszłości." + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Czas trwania nie może być mniejszy niż 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Czas trwania nie może wynosić 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Czas trwania nie może być dłuższy niż 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Nie można planować nakładających się audycji" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Szukaj Użytkowników:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Prowadzący:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Nazwa użytkownika:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Hasło:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Potwierdź hasło:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Imię:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Nazwisko:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Telefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Typ użytkownika:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Nazwa użytkownika musi być unikalna." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Data rozpoczęcia:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Tytuł:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Autor:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Rok:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Wydawnictwo:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Kompozytor:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Dyrygent/Pod batutą:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Nastrój:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Prawa autorskie:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "Numer ISRC:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Strona internetowa:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Język:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Nazwa stacji" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo stacji:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony" -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Tydzień zaczynaj od" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Nagrywać z wejścia liniowego?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Odtwarzać ponownie?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Resetuj hasło" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Możliwe są tylko cyfry." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Zaloguj" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Hasło" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Potwierdź nowe hasło" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Hasła muszą się zgadzać." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Nazwa użytkownika" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Resetuj hasło" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "dni" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Włączony:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Typ strumienia:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Typ usługi:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanały:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Serwer" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "adres URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Punkt montowania" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Login Administratora" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Hasło Administratora" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Serwer nie może być pusty." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port nie może być pusty." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Punkt montowania nie może być pusty dla serwera Icecast." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Aktualnie odtwarzane" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' nie pasuje do formatu daty '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Wszystkie moje audycje:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' zawiera mniej niż %min% znaków" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' zawiera więcej niż %max% znaków" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Wybierz kryteria" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Hasła muszą się zgadzać" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Częstotliwość próbkowania (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "godzin(y)" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minut(y)" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "elementy" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dynamiczny" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statyczny" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Losowa kolejność odtwarzania" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Przemieszaj" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit nie może być pusty oraz mniejszy od 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit nie może być większy niż 24 godziny" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Wartość powinna być liczbą całkowitą" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "Maksymalna liczba elementów do ustawienia to 500" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Należy wybrać kryteria i modyfikator" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "Długość powinna być wprowadzona w formacie '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Wartość musi być liczbą" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Wartość powinna być mniejsza niż 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Wartość powinna posiadać mniej niż %s znaków" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Wartość nie może być pusta" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Metadane Icecast Vorbis" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Nazwa strumienia:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Artysta - Tytuł" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Audycja - Artysta -Tytuł" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Nazwa stacji - Nazwa audycji" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Metadane Off Air" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Włącz normalizację głośności (Replay Gain)" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Modyfikator normalizacji głośności" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Rok %s musi być w przedziale od 1753 do 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s nie jest poprawną datą" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s nie jest prawidłowym czasem" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Włączony:" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Typ strumienia:" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit Rate:" -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Typ usługi:" -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanały:" -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Serwer" -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "adres URL" -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Nazwa" -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Punkt montowania" -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Login Administratora" -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Hasło Administratora" -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Serwer nie może być pusty." -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port nie może być pusty." -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Punkt montowania nie może być pusty dla serwera Icecast." -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Katalog importu:" -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Katalogi obserwowane:" -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Nieprawidłowy katalog" -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Pole jest wymagane i nie może być puste" -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname" -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' nie pasuje do formatu daty '%format%'" -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' zawiera mniej niż %min% znaków" -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' zawiera więcej niż %max% znaków" -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'" -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue-in i cue-out mają wartość zerową." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Wartość cue-in nie może być większa niż cue-out." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Wartość cue-out nie może być większa niż długość pliku." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Wartość cue-out nie może być mniejsza od cue-in." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Długość musi być większa niż 0 minut" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Długość powinna mieć postać \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL powinien mieć postać \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL powinien mieć 512 znaków lub mniej" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Nie znaleziono typu MIME dla webstreamu" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Nazwa webstreamu nie może być pusta" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Nie można przeanalizować playlisty XSPF" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Nie można przeanalizować playlisty PLS" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Nie można przeanalizować playlisty M3U" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Nie rozpoznano typu strumienia: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Retransmisja z %s do %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Wybierz kraj" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Harmonogram, który przeglądasz jest nieaktualny!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Nie posiadasz uprawnień, aby zaplanować audycję %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Nie można dodawać plików do nagrywanych audycji." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Audycja %s została zaktualizowana wcześniej!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Wybrany plik nie istnieje!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s jest już obserwowny." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s zawiera obserwowany katalog zagnieżdzony: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s jest zagnieżdzony w istniejącym, aktualnie obserwowanym katalogu: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s nie jest poprawnym katalogiem." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s nie występuje na liście katalogów obserwowanych." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Hasła muszą się zgadzać" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5354,7 +3908,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5362,7 +3916,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5371,20 +3925,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue-in i cue-out mają wartość zerową." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Wartość cue-out nie może być większa niż długość pliku." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Wartość cue-in nie może być większa niż cue-out." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Wartość cue-out nie może być mniejsza od cue-in." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s jest już obserwowny." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s zawiera obserwowany katalog zagnieżdzony: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s jest zagnieżdzony w istniejącym, aktualnie obserwowanym katalogu: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s nie jest poprawnym katalogiem." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s jest już ustawiony jako katalog główny bądź znajduje się na liście katalogów obserwowanych." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s nie występuje na liście katalogów obserwowanych." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Wybierz kraj" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie harmonogramu)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Harmonogram, który przeglądasz jest nieaktualny! (błędne dopasowanie instancji)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Harmonogram, który przeglądasz jest nieaktualny!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Nie posiadasz uprawnień, aby zaplanować audycję %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Nie można dodawać plików do nagrywanych audycji." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Audycja %s przekracza dopuszczalną długość i nie może zostać zaplanowana." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Audycja %s została zaktualizowana wcześniej!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Wybrany plik nie istnieje!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Audycje mogą mieć maksymalną długość 24 godzin." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5392,138 +4064,202 @@ msgstr "" "Nie można planować audycji nakładających się na siebie.\n" "Uwaga: zmiana audycji powoduje automatyczną zmianę wszystkich jej powtórzeń." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Retransmisja z %s do %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Długość musi być większa niż 0 minut" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Długość powinna mieć postać \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL powinien mieć postać \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL powinien mieć 512 znaków lub mniej" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Nie znaleziono typu MIME dla webstreamu" + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Nazwa webstreamu nie może być pusta" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Nie można przeanalizować playlisty XSPF" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Nie można przeanalizować playlisty PLS" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Nie można przeanalizować playlisty M3U" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Nieprawidłowy webstream, prawdopodobnie trwa pobieranie pliku." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Nie rozpoznano typu strumienia: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Przeglądaj metadane nagrania" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Kalendarz" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Użytkownicy" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Strumienie" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Edytuj audycję" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Statystyki słuchaczy" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:250 +msgid "Permission denied" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Jak zacząć" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji." -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Instrukcja użytkowania" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Nie można przenieść audycji archiwalnej" -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Nie można przenieść audycji w przeszłość" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Audycja została usunięta, ponieważ nagranie nie istnieje!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Należy odczekać 1 godzinę przed ponownym odtworzeniem." + +#: application/services/HistoryService.php:1064 +msgid "Track" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Odtwarzane" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Pożądana długość bloku nie zostanie osiągnięta jesli airtime nie znajdzie wystarczającej liczby oryginalnych ścieżek spełniających kryteria wyszukiwania. Włącz tę opcję jesli chcesz, żeby ścieżki zostały wielokrotnie dodane do smart blocku." +#~ msgid " to " +#~ msgstr "do" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Jesli Airtime korzysta z routera bądź firewalla, może być konieczna konfiguracja przekierowywania portu i informacja w tym polu będzie nieprawidłowa. W takim wypadku należy dokonac ręcznej aktualizacji pola, tak żeby wyświetlił się prawidłowy host/ port/ mount, do którego mógłby podłączyć się prowadzący. Dopuszczalny zakres to 1024 i 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Aby promowac stację, należy udostepnić funkcję \"wyślij informację zwrotną\")" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "W celu uzyskania wiecej informacji, należy zapoznać się z %sAirtime Manual%s" +#~ msgid "(Required)" +#~ msgstr "(Wymagane)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Zarządzający programowi mają możliwość:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Strona internetowa Twojej stacji)" -#~ msgid "Support setting updated." -#~ msgstr "Zaktualizowano ustawienia wsparcia." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(tylko dla celów weryfikacji, dane nie będą rozpowszechniane)" -#~ msgid "Support Feedback" -#~ msgstr "Informacja zwrotna" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Wpisz znaki, które widzisz na obrazku poniżej." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "About" +#~ msgstr "Informacje" -#~ msgid "Station Web Site:" -#~ msgstr "Strona internetowa stacji:" +#~ msgid "Add this show" +#~ msgstr "Dodaj audycję" -#~ msgid "Country:" -#~ msgstr "Kraj:" +#~ msgid "Additional Options" +#~ msgstr "Opcje dodatkowe" -#~ msgid "City:" -#~ msgstr "Miasto:" - -#~ msgid "Station Description:" -#~ msgstr "Opis stacji:" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Wymagana jest akceptacja polityki prywatności." - -#~ msgid "Default License:" -#~ msgstr "Domyślna licencja:" +#~ msgid "Advanced Search Options" +#~ msgstr "Zaawansowane opcje wyszukiwania" #~ msgid "All rights are reserved" #~ msgstr "Wszelkie prawa zastrzeżone" -#~ msgid "The work is in the public domain" -#~ msgstr "Utwór w domenie publicznej" +#~ msgid "Audio Track" +#~ msgstr "Ścieżka audio" + +#~ msgid "Choose Days:" +#~ msgstr "Wybierz dni:" + +#~ msgid "Choose folder" +#~ msgstr "Wybierz folder" + +#~ msgid "City:" +#~ msgstr "Miasto:" + +#~ msgid "Country:" +#~ msgstr "Kraj:" #~ msgid "Creative Commons Attribution" #~ msgstr "Uznanie autorstwa wg licencji Creative Commons " -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Użycie niekomercyjne wg Creative Commons " - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Użycie niekomercyjne wg Creative Commons " #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" @@ -5531,35 +4267,310 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " -#~ msgid "Register Airtime" -#~ msgstr "Zarejestruj Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(tylko dla celów weryfikacji, dane nie będą rozpowszechniane)" +#~ msgid "Cue In: " +#~ msgstr "Zgłaśnianie [Cue in]:" -#~ msgid "Show me what I am sending " -#~ msgstr "Pokazuj, co wysyłam" +#~ msgid "Cue Out: " +#~ msgstr "Wyciszanie [Cue out]:" -#~ msgid "Terms and Conditions" -#~ msgstr "Zasady i warunki" +#~ msgid "Current Import Folder:" +#~ msgstr "Aktualny folder importu:" -#~ msgid "files meet the criteria" -#~ msgstr "pliki spełniają kryteria" +#~ msgid "Default Length:" +#~ msgstr "Domyślna długość:" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Aby promowac stację, należy udostepnić funkcję \"wyślij informację zwrotną\")" +#~ msgid "Default License:" +#~ msgstr "Domyślna licencja:" -#~ msgid "Your trial expires in" -#~ msgstr "Twoja próba wygasa" +#~ msgid "Disk Space" +#~ msgstr "Miejsce na dysku " -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ta wersja będzie wkrótce przestarzała." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Smart block dynamiczny" -#~ msgid "This version is no longer supported." -#~ msgstr "Ta wersja nie jest już obsługiwana" +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Kryteria dynamicznego Smart Blocku " + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Zwiększ blok dynamiczny" + +#~ msgid "Expand Static Block" +#~ msgstr "Zwiększ bok statyczny" + +#~ msgid "Fade in: " +#~ msgstr "Zgłaśnianie [fade in]:" + +#~ msgid "Fade out: " +#~ msgstr "Wyciszanie [fade out]:" + +#~ msgid "File Path:" +#~ msgstr "Ścieżka pliku:" + +#~ msgid "File import in progress..." +#~ msgstr "Importowanie plików w toku..." + +#~ msgid "Filter History" +#~ msgstr "Filtruj Historię" + +#~ msgid "Find Shows" +#~ msgstr "Znajdź audycję" + +#~ msgid "First Name" +#~ msgstr "Imię" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "W celu uzyskania szczegółowej pomocy, skorzystaj z %suser manual%s" + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "W celu uzyskania wiecej informacji, należy zapoznać się z %sAirtime Manual%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Jesli Airtime korzysta z routera bądź firewalla, może być konieczna konfiguracja przekierowywania portu i informacja w tym polu będzie nieprawidłowa. W takim wypadku należy dokonac ręcznej aktualizacji pola, tak żeby wyświetlił się prawidłowy host/ port/ mount, do którego mógłby podłączyć się prowadzący. Dopuszczalny zakres to 1024 i 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Numer Isrc:" + +#~ msgid "Last Name" +#~ msgstr "Nazwisko" + +#~ msgid "Length:" +#~ msgstr "Długość: " + +#~ msgid "Limit to " +#~ msgstr "Ogranicz(enie) do:" + +#~ msgid "Listen" +#~ msgstr "Słuchaj" + +#~ msgid "Live Stream Input" +#~ msgstr "Wejście Strumienia \"Na żywo\"" + +#~ msgid "Live stream" +#~ msgstr "Transmisja na żywo" + +#~ msgid "Logout" +#~ msgstr "Wyloguj" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Wygląda na to, że strona, której szukasz nie istnieje" + +#~ msgid "Manage Users" +#~ msgstr "Zarządzaj Użytkownikami" + +#~ msgid "Master Source" +#~ msgstr "Źródło Nadrzędne" + +#~ msgid "New User" +#~ msgstr "Nowy Użytkownik" + +#~ msgid "New password" +#~ msgstr "Nowe hasło" + +#~ msgid "Next:" +#~ msgstr "Następny:" + +#~ msgid "No open playlist" +#~ msgstr "Brak otwartej listy odtwarzania" + +#~ msgid "No webstream" +#~ msgstr "Brak webstreamu" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "Na antenie" + +#~ msgid "Original Length:" +#~ msgstr "Oryginalna długość:" + +#~ msgid "Page not found!" +#~ msgstr "Nie znaleziono strony!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Zawartość listy odtwarzania:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Płynne przenikanie utworów na liście dotwarzania" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Wprowadź i potwierdź swoje hasło w poniższych polach" #~ msgid "Please upgrade to " #~ msgstr "Zaktualizuj na" +#~ msgid "Previous:" +#~ msgstr "Poprzedni:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Zarządzający programowi mają możliwość:" + +#~ msgid "Register Airtime" +#~ msgstr "Zarejestruj Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "Usuń obserwowany katalog." + +#~ msgid "Repeat Days:" +#~ msgstr "Dni powtarzania:" + +#~ msgid "Sample Rate:" +#~ msgstr "Częstotliwość próbkowania:" + +#~ msgid "Save playlist" +#~ msgstr "Zapisz listę odtwarzania" + +#~ msgid "Select stream:" +#~ msgstr "Wybierz strumień:" + +#~ msgid "Set" +#~ msgstr "Ustaw" + +#~ msgid "Share" +#~ msgstr "Podziel się" + +#~ msgid "Show Source" +#~ msgstr "Źródło audycji" + +#~ msgid "Show me what I am sending " +#~ msgstr "Pokazuj, co wysyłam" + +#~ msgid "Shuffle playlist" +#~ msgstr "Wymieszaj listę odtwarzania" + +#~ msgid "Source Streams" +#~ msgstr "Strumienie źródłowe" + +#~ msgid "Static Smart Block" +#~ msgstr "Smart block statyczny" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Zawartość statycznego Smart Blocka:" + +#~ msgid "Station Description:" +#~ msgstr "Opis stacji:" + +#~ msgid "Station Web Site:" +#~ msgstr "Strona internetowa stacji:" + +#~ msgid "Stream " +#~ msgstr "Strumień" + +#~ msgid "Stream Settings" +#~ msgstr "Ustawienia strumienia" + +#~ msgid "Stream URL:" +#~ msgstr "URL strumienia:" + +#~ msgid "Stream URL: " +#~ msgstr "URL strumienia:" + +#~ msgid "Style" +#~ msgstr "Styl" + +#~ msgid "Support Feedback" +#~ msgstr "Informacja zwrotna" + +#~ msgid "Support setting updated." +#~ msgstr "Zaktualizowano ustawienia wsparcia." + +#~ msgid "Terms and Conditions" +#~ msgstr "Zasady i warunki" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Pożądana długość bloku nie zostanie osiągnięta jesli airtime nie znajdzie wystarczającej liczby oryginalnych ścieżek spełniających kryteria wyszukiwania. Włącz tę opcję jesli chcesz, żeby ścieżki zostały wielokrotnie dodane do smart blocku." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "W odtwarzaczu słuchacza wyświetli sie nastepujaca informacja:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Utwór w domenie publicznej" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ta wersja nie jest już obsługiwana" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ta wersja będzie wkrótce przestarzała." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "By odtworzyć medium, należy zaktualizować przeglądarkę do najnowszej wersji bądź zainstalowac aktualizację %sFlash plugin%s" + +#~ msgid "Track:" +#~ msgstr "Utwór:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Wpisz znaki, które widzisz na obrazku poniżej." + +#~ msgid "Update Required" +#~ msgstr "Wymagana aktualizacja" + +#~ msgid "Update show" +#~ msgstr "Aktualizuj audycję" + +#~ msgid "User Type" +#~ msgstr "Typ użytkownika" + +#~ msgid "Web Stream" +#~ msgstr "Web Stream" + +#~ msgid "What" +#~ msgstr "Co" + +#~ msgid "When" +#~ msgstr "Kiedy" + +#~ msgid "Who" +#~ msgstr "Kto" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Nie obserwujesz w tej chwili żadnych folderów" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Wymagana jest akceptacja polityki prywatności." + +#~ msgid "Your trial expires in" +#~ msgstr "Twoja próba wygasa" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "pliki spełniają kryteria" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "maksymalna głośność" + +#~ msgid "mute" +#~ msgstr "wycisz" + +#~ msgid "next" +#~ msgstr "następny" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "play" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "Wprowadź czas w sekundach '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "poprzedni" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "włącz głos" diff --git a/legacy/locale/pt_BR/LC_MESSAGES/libretime.po b/legacy/locale/pt_BR/LC_MESSAGES/libretime.po index 5118b1afc..030024d97 100644 --- a/legacy/locale/pt_BR/LC_MESSAGES/libretime.po +++ b/legacy/locale/pt_BR/LC_MESSAGES/libretime.po @@ -1,2496 +1,1605 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Felipe Thomaz Pedroni, 2014 # Pedro Garbellini da Silva , 2014 # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sourcefabric/airtime/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Acessar" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "O ano % s deve estar compreendido no intervalo entre 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nova senha" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Por favor informe e confirme sua nova senha nos campos abaixo." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Histórico da Programação" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Gerenciar Diretórios de Mídia" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Configurações de Fluxo" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Salvar" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Fluxo" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Obrigatório)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Opções Adicionais" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "A informação a seguir será exibida para os ouvintes em seu player de mídia:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(O website de sua estação de rádio)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL do Fluxo:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "para" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Selecione o diretório" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Definir" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Diretório de Importação Atual:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Adicionar" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s não é uma data válida" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Remover diretório monitorado" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Você não está monitorando nenhum diretório." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Selecione os Dias:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Remover" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Dias para reexibir:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Encontrar Programas" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Histórico de Filtros" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Programa" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Master" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s não é um horário válido" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Gerenciar Usuários" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Novo Usuário" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Usuário" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Primeiro Nome" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Último Nome" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Tipo de Usuário" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Expandir Bloco Estático" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Expandir Bloco Dinâmico" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Nome:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Descrição:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Duração:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Embaralhar Lista" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Embaralhar" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Crossfade da Lista" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Fade de saída" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Cancelar" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Salvar Lista" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Nenhuma lista aberta" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss,t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Fade de entrada" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue entrada:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Saída:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Duração Original:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:47 +msgid "Greek" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "em uso" +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Todos" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Opções da Busca Avançada" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Descrição" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL do Fluxo:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Duração Padrão:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Nenhum fluxo web" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Fechar" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Nome" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Criador" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Idioma" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Copyright" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Importação de arquivo em progresso..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Título:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Criador:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Álbum:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Faixa:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Duração:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Taxa de Amostragem:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Humor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Gênero:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Ano:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Legenda:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Compositor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Maestro:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Copyright:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Número Isrc:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Website:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Idioma:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Caminho do Arquivo:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Fluxo Web" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Bloco Inteligente Dinâmico" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Bloco Inteligente Estático" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Faixa de Áudio" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Conteúdos da Lista de Reprodução:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Conteúdo do Bloco Inteligente Estático:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Critério para Bloco Inteligente Dinâmico:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Limitar em" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Estado" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Espaço em Disco" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "anterior" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Calendário" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "play" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pause" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "próximo" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "stop" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "Mudo" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "retirar mudo" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "volume máximo" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Atualização Necessária" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Para reproduzir a mídia que você terá que quer atualizar seu navegador para uma versão recente ou atualizar seu %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "Sobre" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Para obter ajuda mais detalhada, leia o %smanual do usuário%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Fluxo ao vivo" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Compartilhar" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Selecionar fluxo:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Adicionar este programa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Atualizar programa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "O que" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Quando" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Fluxo de entrada ao vivo" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Quem" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Aparência" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Início" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Título" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Álbum" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Duração" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Gênero" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Legenda" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Anterior:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Próximo:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Fontes de Fluxo" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "NO AR" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Ouvir" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Sair" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Listas" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Blocos" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Usuários" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Fluxos" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Estado" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Histórico da Programação" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Estatísticas de Ouvintes" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Ajuda" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Iniciando" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Manual do Usuário" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Página não encontrada!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "A página que você procura não existe!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Player de Áudio" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue Entrada" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Saída" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade Entrada" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Saída" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Você não tem permissão para desconectar a fonte." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Não há fonte conectada a esta entrada." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Você não tem permissão para alternar entre as fontes." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Usuário ou senha inválidos. Tente novamente." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Fluxo Sem Título" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Fluxo gravado." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Valores do formulário inválidos." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Usuário adicionado com sucesso!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Usuário atualizado com sucesso!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Configurações atualizadas com sucesso!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Visualizar" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Selecione o cursor" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Remover o cursor" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Excluir" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "programa inexistente" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Preferências atualizadas." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Preferências de fluxo atualizadas." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "o caminho precisa ser informado" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problemas com o Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s não encontrado" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Ocorreu algo errado." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Adicionar à Lista" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Adicionar ao Bloco" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Download" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Duplicar Lista" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Nenhuma ação disponível" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Você não tem permissão para excluir os itens selecionados." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Cópia de %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Você não tem permissão para acessar esta funcionalidade." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Você não tem permissão para acessar esta funcionalidade." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Requisição inválida. Parâmetro não informado." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Requisição inválida. Parâmetro informado é inválido." -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Você não tem permissão para desconectar a fonte." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Não há fonte conectada a esta entrada." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Você não tem permissão para alternar entre as fontes." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Você está vendo uma versão obsoleta de %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Você não pode adicionar faixas a um bloco dinâmico" +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Você não tem permissão para excluir os %s(s) selecionados." +msgid "%s not found" +msgstr "%s não encontrado" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Você pode somente adicionar faixas um bloco inteligente." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Ocorreu algo errado." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução" +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Visualizar" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Lista Sem Título" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Adicionar à Lista" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Bloco Sem Título" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Adicionar ao Bloco" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Lista Desconhecida" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Excluir" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Download" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Duplicar Lista" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Nenhuma ação disponível" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Você não tem permissão para excluir os itens selecionados." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Cópia de %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Confirme se o nome de usuário / senha do administrador estão corretos na página Sistema > Fluxos." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Player de Áudio" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Gravando:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Fluxo Mestre" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Fluxo Ao Vivo" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Nada Programado" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Programa em Exibição:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Agora" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Você está executando a versão mais recente" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Nova versão disponível:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Adicionar a esta lista de reprodução" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Adiconar a este bloco" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Adicionando 1 item" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Adicionando %s items" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Você pode adicionar somente faixas a um bloco inteligente." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Você pode adicionar apenas faixas, blocos e fluxos às listas de reprodução" + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Por favor selecione um posição do cursor na linha do tempo." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Adicionar" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Editar" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Remover" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Editar Metadados" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Adicionar ao programa selecionado" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Selecionar" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Selecionar esta página" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Desmarcar esta página" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Desmarcar todos" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Você tem certeza que deseja excluir o(s) item(ns) selecionado(s)?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Título" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Criador" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Álbum" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Bitrate" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Compositor" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Maestro" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Copyright" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Convertido por" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Gênero" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Legenda" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Idioma" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Última Ateração" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Última Execução" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Duração" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Humor" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Prorietário" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Ganho de Reprodução" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Taxa de Amostragem" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Número de Faixa" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Adicionado" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Website" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Ano" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Carregando..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Todos" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Arquivos" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Listas" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Blocos" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Fluxos" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Tipo Desconhecido:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Você tem certeza que deseja excluir o item selecionado?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Upload em andamento..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Obtendo dados do servidor..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Código do erro:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Mensagem de erro:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "A entrada deve ser um número positivo" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "A entrada deve ser um número" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "A entrada deve estar no formato yyyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "A entrada deve estar no formato hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Você está fazendo upload de arquivos neste momento. %s Ir a outra tela cancelará o processo de upload. %sTem certeza de que deseja sair desta página?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "por favor informe o tempo no formato '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Seu navegador não suporta a execução deste tipo de arquivo:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Não é possível o preview de blocos dinâmicos" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Limitar em:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "A lista foi salva" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "A lista foi embaralhada" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "O Airtime não pôde determinar o status do arquivo. Isso pode acontecer quando o arquivo está armazenado em uma unidade remota atualmente inacessível ou está em um diretório que deixou de ser 'monitorado'." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Número de Ouvintes em %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Lembrar-me dentro de uma semana" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Não me lembrar novamente" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Sim, quero colaborar com o Airtime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "A imagem precisa conter extensão jpg, jpeg, png ou gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Um bloco estático salvará os critérios e gerará o conteúdo imediatamente. Isso permite que você edite e visualize-o na Biblioteca antes de adicioná-lo a um programa." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Um bloco dinâmico apenas conterá critérios. O conteúdo do bloco será gerado após adicioná-lo a um programa. Você não será capaz de ver ou editar o conteúdo na Biblioteca." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "O bloco foi embaralhado" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "O bloco foi gerado e o criterio foi salvo" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "O bloco foi salvo" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Processando..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Selecionar modificador" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "contém" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "não contém" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "é" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "não é" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "começa com" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "termina com" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "é maior que" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "é menor que" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "está no intervalo" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Gerar" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Selecione o Diretório de Armazenamento" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Selecione o Diretório para Monitoramento" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2498,2855 +1607,2301 @@ msgstr "" "Tem certeza de que deseja alterar o diretório de armazenamento? \n" "Isto irá remover os arquivos de sua biblioteca Airtime!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Gerenciar Diretórios de Mídia" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Tem certeza que deseja remover o diretório monitorado?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "O caminho está inacessível no momento." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "" -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Conectado ao servidor de fluxo" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "O fluxo está desabilitado" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Obtendo informações do servidor..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Não é possível conectar ao servidor de streaming" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Marque esta opção para habilitar metadados para fluxos OGG (metadados fluxo são o título da faixa, artista e nome doprograma que é exibido em um player de áudio). VLC e MPlayer tem um bug sério quando executam fluxos Ogg / Vorbis, que possuem o recurso de metadados habilitado: eles vão desconectar do fluxo depois de cada faixa. Se você estiver transmitindo um fluxo no formato OGG e seus ouvintes não precisem de suporte para esses players de áudio, sinta-se à vontade para ativar essa opção." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Marque esta caixa para desligar automaticamente as fontes Mestre / Programa, após a desconexão de uma fonte." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Marque esta caixa para ligar automaticamente as fontes Mestre / Programa, após a conexão de uma fonte." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Se o servidor Icecast esperar por um usuário 'source', este campo poderá permanecer em branco." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Se o cliente de fluxo ao vivo não solicitar um usuário, este campo deve ser \"source\"." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Este é o usuário e senha de servidores Icecast / SHOUTcast, para obter estatísticas de ouvintes." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Nenhum resultado encontrado" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Este segue o mesmo padrão de segurança para os programas: apenas usuários designados para o programa poderão se conectar." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Defina uma autenticação personalizada que funcionará apenas neste programa." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "A instância deste programa não existe mais!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "" -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Programa" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "O programa está vazio" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Obtendo dados do servidor..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Este programa não possui conteúdo agendado." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Este programa não possui duração completa de conteúdos." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Janeiro" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Fevereiro" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Março" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Abril" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Maio" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Junho" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Julho" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Agosto" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Setembro" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Outubro" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Novembro" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Dezembro" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Jan" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Fev" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Abr" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Jun" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Jul" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Ago" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Set" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Out" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dez" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Domingo" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Segunda" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Terça" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Quarta" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Quinta" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Sexta" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Sábado" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Dom" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Seg" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Ter" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Qua" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Qui" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Sex" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sab" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Um programa com tempo maior que a duração programada será cortado pelo programa seguinte." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Cancelar Programa em Execução?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Parar gravação do programa em execução?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ok" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Conteúdos do Programa" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Remover todos os conteúdos?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Excluir item(ns) selecionado(s)?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Início" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Fim" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Duração" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue Entrada" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Saída" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade Entrada" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Saída" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Programa vazio" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Gravando a partir do Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Prévia da faixa" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Não é possível realizar agendamento fora de um programa." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Movendo 1 item" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Movendo %s itens" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Salvar" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Cancelar" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Selecionar todos" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Selecionar nenhum" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Remover seleção de itens agendados" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Saltar para faixa em execução" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Cancelar programa atual" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Abrir biblioteca para adicionar ou remover conteúdo" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Adicionar / Remover Conteúdo" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "em uso" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disco" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Explorar" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Abrir" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Administrador" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "DJ" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Gerente de Programação" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Visitante" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Visitantes podem fazer o seguinte:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Visualizar agendamentos" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Visualizar conteúdo dos programas" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "DJs podem fazer o seguinte:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Gerenciar o conteúdo de programas delegados a ele" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Importar arquivos de mídia" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Criar listas de reprodução, blocos inteligentes e fluxos" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Gerenciar sua própria blblioteca de conteúdos" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Visualizar e gerenciar o conteúdo dos programas" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Agendar programas" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Gerenciar bibliotecas de conteúdo" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Administradores podem fazer o seguinte:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Gerenciar configurações" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Gerenciar usuários" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Gerenciar diretórios monitorados" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Enviar informações de suporte" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Visualizar estado do sistema" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Acessar o histórico da programação" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Ver estado dos ouvintes" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Exibir / ocultar colunas" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "De {from} até {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "yyy-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "khz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Do" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Se" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Te" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Qu" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Qu" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Se" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Sa" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Fechar" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Hora" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuto" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Concluído" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Selecionar arquivos" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Adicione arquivos para a fila de upload e pressione o botão iniciar " -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Adicionar Arquivos" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Parar Upload" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Iniciar Upload" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Adicionar arquivos" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "%d/%d arquivos importados" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Arraste arquivos nesta área." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Erro na extensão do arquivo." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Erro no tamanho do arquivo." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Erro na contagem dos arquivos." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Erro de inicialização." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "Erro HTTP." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Erro de segurança." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Erro genérico." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "Erro de I/O." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Arquivos: %s." -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d arquivos adicionados à fila." -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Arquivo: %f, tamanho: %s, tamanho máximo: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "URL de upload pode estar incorreta ou inexiste." -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Erro: Arquivo muito grande:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Erro: Extensão de arquivo inválida." -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s linhas%s copiadas para a área de transferência" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sVisualizar impressão%sUse a função de impressão do navegador para imprimir esta tabela. Pressione ESC quando terminar." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Descrição" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Ativo" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Inativo" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Usuário ou senha inválidos. Tente novamente." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Você está vendo uma versão obsoleta de %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Você não pode adicionar faixas a um bloco dinâmico" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Você não tem permissão para excluir os %s(s) selecionados." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Você pode somente adicionar faixas um bloco inteligente." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Lista Sem Título" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Bloco Sem Título" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Lista Desconhecida" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Preferências atualizadas." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Preferências de fluxo atualizadas." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "o caminho precisa ser informado" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problemas com o Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Retransmissão do programa %s de %s as %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Selecione o cursor" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Remover o cursor" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "programa inexistente" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Visualizar Metadados do Arquivo Gravado" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Usuário adicionado com sucesso!" -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Usuário atualizado com sucesso!" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Configurações atualizadas com sucesso!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Fluxo Sem Título" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Fluxo gravado." -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Editar Programa" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Valores do formulário inválidos." -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Caracter inválido informado" -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "O dia precisa ser especificado" -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "O horário deve ser especificado" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Não é possível arrastar e soltar programas repetidos" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "É preciso aguardar uma hora para retransmitir" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Não é possível mover um programa anterior" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Não é possível mover um programa anterior" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Não é permitido agendar programas sobrepostos" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "O programa foi excluído porque a gravação prévia não existe!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "É necessário aguardar 1 hora antes de retransmitir." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Executado" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Selecione um critério" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bitrate (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Taxa de Amostragem (khz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "horas" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minutos" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "itens" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinâmico" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Estático" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Gerar conteúdo da lista e salvar critério" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Embaralhar conteúdo da lista" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "O limite não pode ser vazio ou menor que 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "O limite não pode ser maior que 24 horas" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "O valor deve ser um número inteiro" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "O número máximo de itens é 500" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Você precisa selecionar Critério e Modificador " - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "A duração deve ser informada no formato '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "O valor deve ser numérico" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "O valor precisa ser menor que 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "O valor deve conter no máximo %s caracteres" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "O valor não pode estar em branco" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "Número ISRC:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Diretório de Importação:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Diretórios Monitorados: " - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Não é um diretório válido" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Tipo de Reexibição:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "semanal" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "mensal" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Selecione os Dias:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Data de Fim:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Sem fim?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "A data de fim deve ser posterior à data de início" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Valor é obrigatório e não poder estar em branco." - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' não corresponde ao formato 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Fuso Horário:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Reexibir?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Não é possível criar um programa no passado." - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Não é possível alterar o início de um programa que está em execução" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Data e horário finais não podem ser definidos no passado." - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Não pode ter duração < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Não pode ter duração 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Não pode ter duração maior que 24 horas" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Usuário:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Senha:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Confirmar Senha:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Primeiro nome:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Último nome:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Email:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Celular:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Perfil do Usuário:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Usuário já existe." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Usar Autenticação Personalizada:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Definir Usuário:" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Definir Senha:" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "O usuário não pode estar em branco." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "A senha não pode estar em branco." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Gravar a partir do Line In?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Retransmitir?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dias" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" msgstr "" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tipo de Reexibição:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "semanal" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" msgstr "" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mensal" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Selecione os Dias:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" msgstr "" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Data de Início:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Caracter inválido informado" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Procurar Usuários:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" msgstr "" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Meus Programas:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" msgstr "" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Data de Fim:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Sem fim?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "A data de fim deve ser posterior à data de início" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Cor de Fundo:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Cor da Fonte:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "O dia precisa ser especificado" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Nome:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "O horário deve ser especificado" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "É preciso aguardar uma hora para retransmitir" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Programa Sem Título" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Gênero:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Descrição:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' não corresponde ao formato 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Duração:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Fuso Horário:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Reexibir?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Não é possível criar um programa no passado." + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Não é possível alterar o início de um programa que está em execução" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Data e horário finais não podem ser definidos no passado." + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Não pode ter duração < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Não pode ter duração 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Não pode ter duração maior que 24 horas" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Não é permitido agendar programas sobrepostos" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Procurar Usuários:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJs:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Usuário:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Senha:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Confirmar Senha:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Primeiro nome:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Último nome:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Email:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Celular:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Perfil do Usuário:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Usuário já existe." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Data de Início:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Título:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Criador:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Álbum:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Ano:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Legenda:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Compositor:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Maestro:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Humor:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Copyright:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "Número ISRC:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Website:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Idioma:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Nome da Estação" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo da Estação:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Nota: qualquer arquivo maior que 600x600 será redimensionado" -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Semana Inicia Em" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Gravar a partir do Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Retransmitir?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Redefinir senha" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Somente números são permitidos." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Acessar" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Senha" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Confirmar nova senha" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "A senha de confirmação não confere." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Usuário" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Redefinir senha" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "dias" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Habilitado:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Tipo de Fluxo:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tipo de Serviço:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Canais:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stéreo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Servidor" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Porta" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Ponto de Montagem" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Usuário Administrador" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Senha do Administrador" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Servidor não pode estar em branco." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Porta não pode estar em branco." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Ponto de montagem deve ser informada em servidor Icecast." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Tocando agora" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "%value%' não é um enderçeo de email válido" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' não corresponde a uma data válida '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Meus Programas:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is maior que o número máximo %max% de caracteres" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Selecione um critério" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bitrate (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Senhas não conferem" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Taxa de Amostragem (khz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "horas" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minutos" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "itens" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinâmico" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Estático" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Gerar conteúdo da lista e salvar critério" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Embaralhar conteúdo da lista" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Embaralhar" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "O limite não pode ser vazio ou menor que 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "O limite não pode ser maior que 24 horas" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "O valor deve ser um número inteiro" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "O número máximo de itens é 500" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Você precisa selecionar Critério e Modificador " + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "A duração deve ser informada no formato '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "O valor deve ser numérico" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "O valor precisa ser menor que 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "O valor deve conter no máximo %s caracteres" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "O valor não pode estar em branco" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Metadados Icecast Vorbis" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Legenda do Fluxo:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Artista - Título" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Programa - Artista - Título" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Nome da Estação - Nome do Programa" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Metadados Off Air" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Habilitar Ganho de Reprodução" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Modificador de Ganho de Reprodução" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "O ano % s deve estar compreendido no intervalo entre 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s não é uma data válida" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s não é um horário válido" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Habilitado:" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Tipo de Fluxo:" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bitrate:" -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Tipo de Serviço:" -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Canais:" -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stéreo" -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Servidor" -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Porta" -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Nome" -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Ponto de Montagem" -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Usuário Administrador" -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Senha do Administrador" -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Servidor não pode estar em branco." -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Porta não pode estar em branco." -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Ponto de montagem deve ser informada em servidor Icecast." -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Diretório de Importação:" -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Diretórios Monitorados: " -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Não é um diretório válido" -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Valor é obrigatório e não poder estar em branco." -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "%value%' não é um enderçeo de email válido" -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' não corresponde a uma data válida '%format%'" -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres" -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is maior que o número máximo %max% de caracteres" -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive" -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Cue de entrada e saída são nulos." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "A duração do ponto de entrada não pode ser maior que a do ponto de saída." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "O ponto de saída não pode ser maior que a duração do arquivo" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "A duração do ponto de saída não pode ser menor que a do ponto de entrada." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "A duração precisa ser maior que 0 minuto" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "A duração deve ser informada no formato \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "A URL deve estar no formato \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "A URL de conter no máximo 512 caracteres" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Nenhum tipo MIME encontrado para o fluxo." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "O nome do fluxo não pode estar vazio" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Não foi possível analisar a lista XSPF" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Não foi possível analisar a lista PLS" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Não foi possível analisar a lista M3U" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Fluxo web inválido. A URL parece tratar-se de download de arquivo." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Tipo de fluxo não reconhecido: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Retransmissão de %s a partir de %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Selecione o País" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "A programação que você está vendo está desatualizada! (programação incompatível)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "A programação que você está vendo está desatualizada! (instância incompatível)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "A programação que você está vendo está desatualizada!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Você não tem permissão para agendar programa %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Você não pode adicionar arquivos para gravação de programas." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "O programa %s terminou e não pode ser agendado." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "O programa %s foi previamente atualizado!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Um dos arquivos selecionados não existe!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s já está monitorado." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s contém o diretório monitorado:% s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s está contido dentro de diretório já monitorado: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s não é um diretório válido." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s não existe na lista de diretórios monitorados." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Senhas não conferem" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5354,7 +3909,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5362,7 +3917,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5371,20 +3926,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Cue de entrada e saída são nulos." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "O ponto de saída não pode ser maior que a duração do arquivo" + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "A duração do ponto de entrada não pode ser maior que a do ponto de saída." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "A duração do ponto de saída não pode ser menor que a do ponto de entrada." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s já está monitorado." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s contém o diretório monitorado:% s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s está contido dentro de diretório já monitorado: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s não é um diretório válido." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s já está definido como armazenamento atual ou está na lista de diretórios monitorados." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s não existe na lista de diretórios monitorados." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Selecione o País" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "A programação que você está vendo está desatualizada! (programação incompatível)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "A programação que você está vendo está desatualizada! (instância incompatível)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "A programação que você está vendo está desatualizada!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Você não tem permissão para agendar programa %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Você não pode adicionar arquivos para gravação de programas." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "O programa %s terminou e não pode ser agendado." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "O programa %s foi previamente atualizado!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Um dos arquivos selecionados não existe!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Os programas podem ter duração máxima de 24 horas." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5392,138 +4065,202 @@ msgstr "" "Não é possível agendar programas sobrepostos.\n" "Nota: Redimensionar um programa repetitivo afeta todas as suas repetições." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Retransmissão de %s a partir de %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "A duração precisa ser maior que 0 minuto" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "A duração deve ser informada no formato \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "A URL deve estar no formato \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "A URL de conter no máximo 512 caracteres" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Nenhum tipo MIME encontrado para o fluxo." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "O nome do fluxo não pode estar vazio" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Não foi possível analisar a lista XSPF" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Não foi possível analisar a lista PLS" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Não foi possível analisar a lista M3U" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Fluxo web inválido. A URL parece tratar-se de download de arquivo." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Tipo de fluxo não reconhecido: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Visualizar Metadados do Arquivo Gravado" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Calendário" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Usuários" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Fluxos" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Editar Programa" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Estatísticas de Ouvintes" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:250 +msgid "Permission denied" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Iniciando" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Não é possível arrastar e soltar programas repetidos" -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Manual do Usuário" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Não é possível mover um programa anterior" -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Não é possível mover um programa anterior" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "O programa foi excluído porque a gravação prévia não existe!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "É necessário aguardar 1 hora antes de retransmitir." + +#: application/services/HistoryService.php:1064 +msgid "Track" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Executado" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "A duração desejada do bloco não será completada se o Airtime não localizar faixas únicas suficientes que correspondem aos critérios informados. Ative esta opção se você deseja permitir que as mesmas faixas sejam adicionadas várias vezes num bloco inteligente." +#~ msgid " to " +#~ msgstr "para" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Se o Airtime estiver atrás de um roteador ou firewall, pode ser necessário configurar o redirecionamento de portas e esta informação de campo ficará incorreta. Neste caso, você terá de atualizar manualmente este campo para que ele exiba o corretamente o host / porta / ponto de montagem necessários para seu DJ para se conectar. O intervalo permitido é entre 1024 e 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(para divulgação de sua estação, a opção 'Enviar Informações de Suporte\" precisa estar habilitada)" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Para mais informações, leia o %sManual do Airtime%s" +#~ msgid "(Required)" +#~ msgstr "(Obrigatório)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Gerentes de Programação podem fazer o seguinte:" +#~ msgid "(Your radio station website)" +#~ msgstr "(O website de sua estação de rádio)" -#~ msgid "Support setting updated." -#~ msgstr "Configurações de suporte atualizadas." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(somente para efeito de verificação, não será publicado)" -#~ msgid "Support Feedback" -#~ msgstr "Informações de Suporte" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Digite os caracteres que você vê na imagem abaixo." +#~ msgid "(ss.t)" +#~ msgstr "(ss,t)" -#~ msgid "Phone:" -#~ msgstr "Fone:" +#~ msgid "About" +#~ msgstr "Sobre" -#~ msgid "Station Web Site:" -#~ msgstr "Website da Estação:" +#~ msgid "Add this show" +#~ msgstr "Adicionar este programa" -#~ msgid "Country:" -#~ msgstr "País:" +#~ msgid "Additional Options" +#~ msgstr "Opções Adicionais" -#~ msgid "City:" -#~ msgstr "Cidade:" - -#~ msgid "Station Description:" -#~ msgstr "Descrição da Estação:" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Você precisa concordar com a política de privacidade." - -#~ msgid "Default License:" -#~ msgstr "Licença Padrão:" +#~ msgid "Advanced Search Options" +#~ msgstr "Opções da Busca Avançada" #~ msgid "All rights are reserved" #~ msgstr "Todos os direitos são reservados" -#~ msgid "The work is in the public domain" -#~ msgstr "O trabalho é de domínio público" +#~ msgid "Audio Track" +#~ msgstr "Faixa de Áudio" + +#~ msgid "Choose Days:" +#~ msgstr "Selecione os Dias:" + +#~ msgid "Choose folder" +#~ msgstr "Selecione o diretório" + +#~ msgid "City:" +#~ msgstr "Cidade:" + +#~ msgid "Country:" +#~ msgstr "País:" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Attribution No Derivative Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5531,32 +4268,307 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Attribution Noncommercial Share Alike" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(somente para efeito de verificação, não será publicado)" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" -#~ msgid "Show me what I am sending " -#~ msgstr "Mostrar quais informações estou enviando" +#~ msgid "Cue In: " +#~ msgstr "Cue entrada:" -#~ msgid "Terms and Conditions" -#~ msgstr "Termos e Condições" +#~ msgid "Cue Out: " +#~ msgstr "Cue Saída:" -#~ msgid "files meet the criteria" -#~ msgstr "arquivos correspondem ao critério" +#~ msgid "Current Import Folder:" +#~ msgstr "Diretório de Importação Atual:" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(para divulgação de sua estação, a opção 'Enviar Informações de Suporte\" precisa estar habilitada)" +#~ msgid "Default Length:" +#~ msgstr "Duração Padrão:" -#~ msgid "Your trial expires in" -#~ msgstr "Seu período de teste termina em" +#~ msgid "Default License:" +#~ msgstr "Licença Padrão:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Esta versão ficará obsoleta em breve." +#~ msgid "Disk Space" +#~ msgstr "Espaço em Disco" -#~ msgid "This version is no longer supported." -#~ msgstr "Esta versão não é mais suportada." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Bloco Inteligente Dinâmico" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Critério para Bloco Inteligente Dinâmico:" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Expandir Bloco Dinâmico" + +#~ msgid "Expand Static Block" +#~ msgstr "Expandir Bloco Estático" + +#~ msgid "Fade in: " +#~ msgstr "Fade de entrada" + +#~ msgid "Fade out: " +#~ msgstr "Fade de saída" + +#~ msgid "File Path:" +#~ msgstr "Caminho do Arquivo:" + +#~ msgid "File import in progress..." +#~ msgstr "Importação de arquivo em progresso..." + +#~ msgid "Filter History" +#~ msgstr "Histórico de Filtros" + +#~ msgid "Find Shows" +#~ msgstr "Encontrar Programas" + +#~ msgid "First Name" +#~ msgstr "Primeiro Nome" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Para obter ajuda mais detalhada, leia o %smanual do usuário%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Para mais informações, leia o %sManual do Airtime%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Se o Airtime estiver atrás de um roteador ou firewall, pode ser necessário configurar o redirecionamento de portas e esta informação de campo ficará incorreta. Neste caso, você terá de atualizar manualmente este campo para que ele exiba o corretamente o host / porta / ponto de montagem necessários para seu DJ para se conectar. O intervalo permitido é entre 1024 e 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Número Isrc:" + +#~ msgid "Last Name" +#~ msgstr "Último Nome" + +#~ msgid "Length:" +#~ msgstr "Duração:" + +#~ msgid "Limit to " +#~ msgstr "Limitar em" + +#~ msgid "Listen" +#~ msgstr "Ouvir" + +#~ msgid "Live Stream Input" +#~ msgstr "Fluxo de entrada ao vivo" + +#~ msgid "Live stream" +#~ msgstr "Fluxo ao vivo" + +#~ msgid "Logout" +#~ msgstr "Sair" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "A página que você procura não existe!" + +#~ msgid "Manage Users" +#~ msgstr "Gerenciar Usuários" + +#~ msgid "Master Source" +#~ msgstr "Master" + +#~ msgid "New User" +#~ msgstr "Novo Usuário" + +#~ msgid "New password" +#~ msgstr "Nova senha" + +#~ msgid "Next:" +#~ msgstr "Próximo:" + +#~ msgid "No open playlist" +#~ msgstr "Nenhuma lista aberta" + +#~ msgid "No webstream" +#~ msgstr "Nenhum fluxo web" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "NO AR" + +#~ msgid "Original Length:" +#~ msgstr "Duração Original:" + +#~ msgid "Page not found!" +#~ msgstr "Página não encontrada!" + +#~ msgid "Phone:" +#~ msgstr "Fone:" + +#~ msgid "Playlist Contents: " +#~ msgstr "Conteúdos da Lista de Reprodução:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Crossfade da Lista" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Por favor informe e confirme sua nova senha nos campos abaixo." #~ msgid "Please upgrade to " #~ msgstr "Por favor, atualize para" +#~ msgid "Previous:" +#~ msgstr "Anterior:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Gerentes de Programação podem fazer o seguinte:" + +#~ msgid "Remove watched directory" +#~ msgstr "Remover diretório monitorado" + +#~ msgid "Repeat Days:" +#~ msgstr "Dias para reexibir:" + +#~ msgid "Sample Rate:" +#~ msgstr "Taxa de Amostragem:" + +#~ msgid "Save playlist" +#~ msgstr "Salvar Lista" + +#~ msgid "Select stream:" +#~ msgstr "Selecionar fluxo:" + +#~ msgid "Set" +#~ msgstr "Definir" + +#~ msgid "Share" +#~ msgstr "Compartilhar" + +#~ msgid "Show Source" +#~ msgstr "Programa" + +#~ msgid "Show me what I am sending " +#~ msgstr "Mostrar quais informações estou enviando" + +#~ msgid "Shuffle playlist" +#~ msgstr "Embaralhar Lista" + +#~ msgid "Source Streams" +#~ msgstr "Fontes de Fluxo" + +#~ msgid "Static Smart Block" +#~ msgstr "Bloco Inteligente Estático" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Conteúdo do Bloco Inteligente Estático:" + +#~ msgid "Station Description:" +#~ msgstr "Descrição da Estação:" + +#~ msgid "Station Web Site:" +#~ msgstr "Website da Estação:" + +#~ msgid "Stream " +#~ msgstr "Fluxo" + +#~ msgid "Stream Settings" +#~ msgstr "Configurações de Fluxo" + +#~ msgid "Stream URL:" +#~ msgstr "URL do Fluxo:" + +#~ msgid "Stream URL: " +#~ msgstr "URL do Fluxo:" + +#~ msgid "Style" +#~ msgstr "Aparência" + +#~ msgid "Support Feedback" +#~ msgstr "Informações de Suporte" + +#~ msgid "Support setting updated." +#~ msgstr "Configurações de suporte atualizadas." + +#~ msgid "Terms and Conditions" +#~ msgstr "Termos e Condições" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "A duração desejada do bloco não será completada se o Airtime não localizar faixas únicas suficientes que correspondem aos critérios informados. Ative esta opção se você deseja permitir que as mesmas faixas sejam adicionadas várias vezes num bloco inteligente." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "A informação a seguir será exibida para os ouvintes em seu player de mídia:" + +#~ msgid "The work is in the public domain" +#~ msgstr "O trabalho é de domínio público" + +#~ msgid "This version is no longer supported." +#~ msgstr "Esta versão não é mais suportada." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Esta versão ficará obsoleta em breve." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Para reproduzir a mídia que você terá que quer atualizar seu navegador para uma versão recente ou atualizar seu %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Faixa:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Digite os caracteres que você vê na imagem abaixo." + +#~ msgid "Update Required" +#~ msgstr "Atualização Necessária" + +#~ msgid "Update show" +#~ msgstr "Atualizar programa" + +#~ msgid "User Type" +#~ msgstr "Tipo de Usuário" + +#~ msgid "Web Stream" +#~ msgstr "Fluxo Web" + +#~ msgid "What" +#~ msgstr "O que" + +#~ msgid "When" +#~ msgstr "Quando" + +#~ msgid "Who" +#~ msgstr "Quem" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Você não está monitorando nenhum diretório." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Você precisa concordar com a política de privacidade." + +#~ msgid "Your trial expires in" +#~ msgstr "Seu período de teste termina em" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "arquivos correspondem ao critério" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "volume máximo" + +#~ msgid "mute" +#~ msgstr "Mudo" + +#~ msgid "next" +#~ msgstr "próximo" + +#~ msgid "pause" +#~ msgstr "pause" + +#~ msgid "play" +#~ msgstr "play" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "por favor informe o tempo em segundos '00 (.0)'" + +#~ msgid "previous" +#~ msgstr "anterior" + +#~ msgid "stop" +#~ msgstr "stop" + +#~ msgid "unmute" +#~ msgstr "retirar mudo" diff --git a/legacy/locale/ro_RO/LC_MESSAGES/libretime.po b/legacy/locale/ro_RO/LC_MESSAGES/libretime.po deleted file mode 100644 index 2af919f6c..000000000 --- a/legacy/locale/ro_RO/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5460 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/sourcefabric/airtime/language/ro_RO/)\n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/ru_RU/LC_MESSAGES/libretime.po b/legacy/locale/ru_RU/LC_MESSAGES/libretime.po index 58767626a..42f59ad7a 100644 --- a/legacy/locale/ru_RU/LC_MESSAGES/libretime.po +++ b/legacy/locale/ru_RU/LC_MESSAGES/libretime.po @@ -1,6 +1,7 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Andrey Podshivalov, 2014-2015 @@ -11,1881 +12,822 @@ # Yaroslav Grebnev , 2017. #zanata # Yuriy , 2017. #zanata # Stepan Curuci , 2020 #Poedit +# msgid "" msgstr "" -"Project-Id-Version: Airtime 2.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2020-03-31 03:52+0300\n" "Last-Translator: Stepan Curuci \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/sourcefabric/airtime/language/ru_RU/)\n" -"Language: ru\n" +"Language-Team: Russian (Russia)\n" +"Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Poedit 2.3\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "Письмо отправлено!" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "Ссылка на сброс пароля была отправлена на вашу электронную почту. Пожалуйста проверьте и следуйте инструкциям в прилагаемом письме, чтобы сбросить пароль. Если Вы не видите письмо в папке Входящие, проверьте папку Спам" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "Назад" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Вход" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "Добро пожаловать в %s демо! Вы можете авторизоваться, введя логин 'admin' и пароль 'admin'." +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "%s год должен быть в пределах 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "Сброс пароля" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Новый пароль" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Пожалуйста, введите и подтвердите новый пароль ниже." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "История воспроизведения треков" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Лог треков" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Сводка по файлам" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Сводка по программам" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Управление папками медиа-файлов" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "Основные" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Настройки потока" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Сохранить" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "Глобальные настройки" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "дБ" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "Исходящие Потоки" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "Панель управления" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "Запланированные Программы" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "Мой профиль" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Поток " - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "*" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Дополнительные настройки" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Следующая информация будет отображаться слушателям в их плеере:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Веб-сайт вашей радиостанции)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL потока: " - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Содержимое автозагружаемого Плейлиста добавляется в Программу за один час до ее выхода в эфир. Больше информации" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "Настройки TuneIn" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "Опасные настройки" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "Критерии поиска:" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "или" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "и" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "Новый модификатор" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr " к " - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "Новый критерий" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "Дополнительные опции" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Выберите экземпляр программы" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Нет программы" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Найти" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Выбрать папку" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Установить" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Текущая папка импорта:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Добавить" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "Пересканировать наблюдаемую папку (Полезно для сетевой папки, которая может быть не синхронизирована с %s)." +msgid "%s-%s-%s is not a valid date" +msgstr "%s - %s - %s недопустимая дата" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Удалить просматриваемую папку" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Не выставлена просматриваемая папка с треками." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Выберите дни:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Удалить" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Повторить в дни:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Найти Программы" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "Пожалуйста, введите ваши логин и e-mail." - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "Измените плеер, настроив параметры ниже. Когда вы закончите, скопируйте встраиваемый код из области ниже и вставьте в необходимый HTML блок на вашем сайте." - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "Совместимость потоков с устройствами" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "Компьютер/ноутбук" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "Мобильный телефон" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "Да (Flash)" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "Только MP3/OGG*" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "Только MP3/AAC" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "* Известно, что для Chrome на Android требуется около 4 секунд для буферизации потока MP3 со скоростью 128 кбит/с. Более низкие битрейты требуют больше времени для буферизации." - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Фильтр истории" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Источник: Show" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "DJ-и могут использовать эти настройки для подключения совместимого программного обеспечения и вещать в прямом эфире во время текущей программы. Отметьте DJ-ев ниже." - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "Забыли пароль?" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "Живое вещание" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Источник: Master" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "Используйте эти настройки в программном обеспечении для трансляции в любое время с приоритетом над всеми Программами." - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "Переопределить " - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK " - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "Сброс " - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "DJ-и могут использовать эти настройки в программном обеспечении для живого вещания, только во время назначенных им Программ." - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "ВНИМАНИЕ: Применение этих функций необратимо повлияет на вашу радиостанцию Libretime. Будьте внимательны, прежде чем использовать их!" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" -msgstr "Добро пожаловать %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s : %s : %s недопустимое время" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "Это можно настроить позже в настройках пользователя." +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "Английский" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "Подписаться" +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "Афар" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "Сейчас играет:" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "Абхазский" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Управление пользователями" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "Африкаанс" -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Новый пользователь" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "Амхарский" -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "Арабский" -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Логин" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "Ассамский" -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Имя" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "Аймара" -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Фамилия" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "Азербаджанский" -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Категория" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "Башкирский" -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "Слушатели" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "Белорусский" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "Выберите интервал дат ниже" +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "Болгарский" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "Программа" +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "Бихари" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "Дата эфира" +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "Бислама" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "Слушателей в среднем" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "Бенгали" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "Максимум слушателей" +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "Тибетский" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "Состояние потоков для сбора данных:" +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "Бретонский" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] " трек соответствует вашим критериям поиска." -msgstr[1] " трека соответствуют вашим критериям поиска." -msgstr[2] " треков соответствуют вашим критериям поиска." +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "Каталанский" -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "
Это только предварительный просмотр возможного контента, сгенерированного Смарт-блоком на основе вышеуказанных критериев." +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "Корсиканский" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Развернуть статический Блок" +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "Чешский" -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Развернуть динамический Блок" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "Вэльский" -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "Выберите несколько критериев поиска выше и нажмите кнопку «Сгенерировать», чтобы создать этот Плейлист." +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "Данский" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "Список воспроизведения будет составлен, как только вы добавите Смарт-блок в Программу." +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "Немецкий" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "Перетащите треки сюда из Библиотеки, чтобы добавить их в Плейлист" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "Бутан" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "Редактирование " +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "Греческий" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Имя:" +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "Эсперанто" -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Описание:" +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "Испанский" -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Длительность:" +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "Эстонский" -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "Отобразить Подробнее" +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "Басков" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Перемешать Плейлист" +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "Персидский" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Перемешать" +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "Финский" -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Сведение в Плейлисте" +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "Фиджи" -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Очистить Плейлист" +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "Фарси" -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Очистить" +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "Французский" -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "Сведение (сек): " +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "Фризский" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Затухание (сек): " +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "Ирландский" -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Отменить" +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "Шотландский" -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Сохранить Плейлист" +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "Галицийский" -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Нет открытого Плейлиста" +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "Гуананский" -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Показать волну трека" +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "Гуджарати" -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(сс.t)" +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "Науса" -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Сведение (сек): " +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "Хинди" -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "Удалить все треки из этого Смарт-блока" +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "Хорватский" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "Нет открытого Смарт-блока" +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "Венгерский" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Начало звучания: " +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "Армянский" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(чч:мм:сс.t)" +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "Интернациональный" -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Окончание звучания: " +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "Интерлинг" -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Исходная длина трека:" +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "Инупиак" -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "Загрузить" +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "Индонезийский" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "Перенесите файлы сюда или кликните, чтобы выбрать файлы с компьютера." +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "Исландский" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "Хранилище" +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "Итальянский" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "используется" +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "Иврит" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "Японский" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "Иудейский" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "Яванский" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "Грузинский" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "Казахский" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "Гренландский" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "Камбоджийский" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "Каннадский" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "Корейский" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "Кашмирский" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "Курдский" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "Киргизский" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "Латынь" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "Лингала" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "Лаосский" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "Литовский" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "Латвийский" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "Малайзийский" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "Маори" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "Македонский" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "Малаямский" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "Монгольский" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "Молдавский" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "Маратхи" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "Малайзийский" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "Мальтийский" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "Бирманский" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "Науру" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "Непальский" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "Немецкий" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "Норвежский" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "Окситанский" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "(Афан)/Оромур/Ория" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "Панджаби Эм Си" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "Польский" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "Пушту" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "Португальский" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "Кечуа" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "Рэето-романс" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "Кирунди" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "Румынский" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "Русский" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "Киньяруанда" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "Санскрит" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "Синди" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "Сангро" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "Сербский" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "Синигальский" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "Словацкий" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "Славянский" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "Самоанский" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "Шона" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "Сомалийский" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "Албанский" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "Сербский" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "Сисвати" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "Сесото" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "Сунданский" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "Шведский" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "Суахили" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "Тамильский" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "Телугу" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "Таджикский" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "Тайский" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "Тигринья" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "Туркменский" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "Тагальский" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "Сетсвана" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "Тонга" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "Турецкий" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "Тсонга" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "Татарский" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "Тви" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "Украинский" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "Урду" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "Узбекский" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "Въетнамский" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "Волапукский" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "Волоф" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "Хоса" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "Юрубский" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "Китайский" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "Зулу" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "Время станции по умолчанию" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "%01.1fGB из %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s." -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Все" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "Нажмите на кнопку «Новая Программа» и заполните необходимые поля." -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "Не удалось" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s." -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "Ожидание" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу»." -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "Последние загрузки" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Дополнительные параметры поиска" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Описание" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL потока:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Длительность по умолчанию:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Нет веб-потока" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Закрыть" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "Название Подкаста: " - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "Ссылка на Подкаст: " - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "Загружать последние эпизоды:" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "Запланировано:" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "Создать Смарт-блок и Плейлист" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "Смарт-блок и Плейлист созданы" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "Сохранить Подкаст" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "Ссылка RSS ленты:" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "Мой Подкаст" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "Сохранить Подкаст станции" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "Просмотр Ленты" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "Основные поля" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Название" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Автор" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Язык" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Копирайт" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "Ссылка" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "Данные iTunes" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "Автор" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "Ключевые слова" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "Краткое описание" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "Подзаголовок" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "Категория" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "Откровенное содержимое" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "Настройки конфиденциальности" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "Ссылка на ленту" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "Для подробной информации значений данных разделов, пожалуйста просмотрите %sRSS спецификацию%s или %sдокументацию Подкастов Apple%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s." -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Добавление файлов в процессе..." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»" -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "У вас нет прав на изменение этого трека." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "Публикуется" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "Править мета-данные..." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Название:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Автор:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "Опубликовать в:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "Вы уже опубликовали этот трек во всех возможных источниках!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "Опубликованные треки могут быть удалены или обновлены ниже." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "Опубликовано в:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "Снять с публикации" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "Вы еще нигде не публиковали данный трек!" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "Установите галочки в нужных местах и нажмите «Опубликовать» для публикации этого трека в отмеченных сервисах." - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "Опубликовать" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Альбом:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Трек:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Длительность:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Частота дискретизации:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Битрейт:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Настроение:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Жанр:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Год:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Метка:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Композитор:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Исполнитель:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Авторское право:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC номер:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Сайт:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Язык:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Путь к папке:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Веб-поток" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Динамический Смарт-блок" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Статический Смарт-блок" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Аудиодорожка" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Содержимое Плейлиста: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Содержимое статического Смарт-блока: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Критерии динамического Смарт-блока: " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Ограничить до " - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" -msgstr "Версия %s:" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s." -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "Служба" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "Выберите следующую Программу и нажмите «Запланировать Треки»" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Статус системы" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s." -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "Библиотеки PDO и PostgreSQL" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "Конфигурация базы данных LibreTime" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "Конфигурация RabbitMQ для LibreTime" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "Служба медиа анализатора LibreTime" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "Проверьте, что служба libretime-analyzer правильно установлена в " -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr " а также убедитесь, что она запущена " -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "Если нет - попробуйте запустить" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "Служба воспроизведения LibreTime" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "Проверьте, что служба libretime-playout правильно установлена в " -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "Служба Liquidsoap LibreTime" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "Проверьте, что служба libretime-liquidsoap правильно установлена в " -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "Служба Celery Task LibreTime" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "Проверьте, что служба libretime-celery правильно установлена в " -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Дисковое пространство:" +#: application/configs/config-check.php:259 +msgid "LibreTime API service" +msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "Похоже, в этот день не запланировано ни одной Программы." +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "При поддержке %s" +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "Страница Радио" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "Следующая" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Календарь" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "предыдущая" +#: application/configs/navigation.php:43 +msgid "Widgets" +msgstr "Виджеты" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "играть" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "пауза" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "следующий" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "стоп" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "Без звука" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "Включить звук" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "Макс. громкость" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Требуется обновление" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Для проигрывания медиа-файла необходимо обновить браузер до последней версии или обновить %sфлэш-плагин%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Создание шаблона сводки файлов" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Создание шаблона таблицы логов" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Добавить еще элементы" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Добавить новое поле" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Установить шаблон по умолчанию" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "Шаблоны истории воспроизведения треков" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Шаблоны таблицы логов" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Новый шаблон лога треков" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Нет шаблона таблицы логов" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Установить по умолчанию" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Шаблоны сводки файлов" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Новый шаблон сводки файлов" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Нет шаблона сводки файлов" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "О программе" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "%1$s %2$s, радио-приложение c открытым кодом для планирования и удаленного управления радиостанцией." - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "%1$s %2$s распространяется под %3$s" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "Как использовать %s для автоматизации ваших трансляций: " - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "Загрузить аудио теки" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "Нажмите на кнопку «Загрузить» в левом углу, чтобы начать загрузку треков в Библиотеку." - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "Запланировать Программу" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "Выберите «Календарь» в навигационной панели слева. Нажмите кнопку «Новая Программа» и заполните необходимые поля." - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "Добавить треки в Программу" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "Выберите вашу Программу в календаре и нажмите «Запланировать Программу». В появившемся окне добавьте треки в вашу Программу." - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "Теперь можно двигаться дальше!" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Для более подробной справки читайте %sруководство пользователя%s ." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Прямой эфир" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Поделиться" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Выберите поток:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "Таблица тестов" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Добавить эту Программу" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Обновить Программу" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Что" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Когда" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "Автозагружаемый Плейлист" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Вход для прямого эфира" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Кто" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Стиль" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Начало" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Название" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Альбом" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Длительность" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Жанр" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "Управление типами треков" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "Новый тип" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "Код" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Метка" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "Видимость" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Предыдущий:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Следующий:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Внешние источники" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "В ЭФИРЕ" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Слушать" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Выйти" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "Треки" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Плейлисты" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Смарт-блоки" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "Веб-потоки" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "Расписание программ" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "Предпросмотр:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Встраиваемый код:" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить еженедельное расписание. Настройте высоту и ширину виджета, изменив соответствующие значения «height» и «width» в этом коде." - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "Радио-плеер для Facebook" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "Добавить на Facebook" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "Советы:" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "Чтобы сделать вкладку более заметной на вашей странице Facebook, нажмите «More», затем «Manage Tabs»" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "Затем, перетащите элемент «Радиоплеер» вверх списка и нажмите «Save». Теперь он будет отображаться как одна из вкладок по умолчанию, а не скрываться под «More»" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "Плеер" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "Произошла ошибка." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" +msgstr "Расписание программ" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "Доступ запрещен!" +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "Настройки" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "У Вас нет прав для просмотра данной страницы!" +#: application/configs/navigation.php:74 +msgid "General" +msgstr "Основные" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "Мой профиль" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Пользователи" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "Типы треков" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Аудио потоки" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Статус системы" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "Аналитика" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "История воспроизведения треков" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Шаблоны истории" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Статистика по слушателям" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "Статистика прослушиваний" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Справка" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "Упс!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "С чего начать" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "Что-то пошло не так!" +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Руководство пользователя" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Страница не найдена!" +#: application/configs/navigation.php:173 +msgid "Get Help Online" +msgstr "Получить справку онлайн" -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "Мы не можем найти страницу, которую Вы пытаетесь открыть." - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "Неверный запрос!" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "Запрашиваемое действие не поддерживается!" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Похоже, что страница, которую вы ищете, не существует!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Аудио плеер" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "Плейлист" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "Смарт-блок" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "Веб-поток" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "Подкасты" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Воспроизвести" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Стоп" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Начало звучания" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Установить начало звучания" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Окончание звучания" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Установить окончание звучания" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Курсор" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Сведение" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Затухание" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" +#: application/configs/navigation.php:183 +msgid "What's New?" +msgstr "Что нового?" -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "%1$s Copyright © %2$s Все права защищены.
Поддерживается и распространяется под лицензией %3$s командой %4$s" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "У вас нет прав отсоединить источник." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Нет источника, подключенного к этому входу." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "У вас нет прав для переключения источника." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Пожалуйста введите ваш логин и пароль." - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "Такой пользователь или e-mail не найдены." - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "Неправильно ввели логин или e-mail." - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Неверный логин или пароль. Пожалуйста, попробуйте еще раз." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Веб-поток без названия" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Веб-поток сохранен." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Недопустимые значения." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "Страница не найдена." - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "Запрашиваемое действие не поддерживается." - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "У вас нет доступа к данному ресурсу." - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "Произошла внутренняя ошибка." - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Пользователь успешно добавлен!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Пользователь успешно обновлен!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Настройки успешно обновлены!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Прослушать" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Выбрать курсор" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Удалить курсор" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Удалить" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "Программы не существует" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Настройки сохранены." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Настройки потока обновлены." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "необходимо указать путь" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Проблема с Liquidsoap ..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "Метод запроса не принят" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "%s Подкаст" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "Ни одного трека пока не опубликовано." - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s не найден" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Что-то пошло не так." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Добавить в Плейлист" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Добавить в Смарт-блок" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "Редактировать..." - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Загрузка" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Дублировать Плейлист" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "Дублировать Смарт-блок" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Нет доступных действий" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "У вас нет разрешения на удаление выбранных объектов." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "Нельзя удалить запланированный файл." - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "Нельзя удалить файл(ы)" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Копия %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Вы не имеете доступа к этому ресурсу." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Вы не имеете доступа к этому ресурсу. " -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "Файл не существует в %s" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Неверный запрос. Параметр «режим» не прошел." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Неверный запрос. Параметр «режим» является недопустимым" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "У вас нет прав отсоединить источник." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Нет источника, подключенного к этому входу." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "У вас нет прав для переключения источника." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" @@ -1895,7 +837,7 @@ msgstr "" " 1. Активировать как минимум один MP3, AAC, или OGG поток в разделе Настройки -> Аудио потоки
\n" " 2. Включить Публичный API для LibreTime в разделе Настройки -> Основные" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" @@ -1903,7 +845,7 @@ msgstr "" "Чтобы настроить и использовать внешний виджет расписания программ вам нужно:

\n" " Включить Публичный API для LibreTime в разделе Настройки -> Основные" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" @@ -1911,600 +853,765 @@ msgstr "" "Для добавления раздела радио на вашу Страницу в Facebook, вам нужно:

\n" " Включить Публичный API для LibreTime в разделе Настройки -> Основные" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "Страница не найдена." + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "Запрашиваемое действие не поддерживается." + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "У вас нет доступа к данному ресурсу." + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "Произошла внутренняя ошибка." + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Вы просматриваете старые версии %s" +msgid "%s Podcast" +msgstr "%s Подкаст" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Вы не можете добавить треки в динамические блоки." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "Ни одного трека пока не опубликовано." -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "У вас нет разрешения на удаление выбранных %s(s)." +msgid "%s not found" +msgstr "%s не найден" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Вы можете добавить треки только в Смарт-блок." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Что-то пошло не так." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Прослушать" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Плейлист без названия" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Добавить в Плейлист" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Смарт-блок без названия" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Добавить в Смарт-блок" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Неизвестный Плейлист" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Удалить" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "Редактировать..." + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Загрузка" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Дублировать Плейлист" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "Дублировать Смарт-блок" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Нет доступных действий" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "У вас нет разрешения на удаление выбранных объектов." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "Нельзя удалить запланированный файл." + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "Нельзя удалить файл(ы)" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Копия %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Пожалуйста, убедитесь, что логин/пароль admin-а указаны верно в Настройки -> Аудио потоки." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Аудио плеер" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "Что-то пошло не так!" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Запись:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Master-Steam" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Live Stream" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Ничего нет" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Текущая Программа:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Играет" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Вы используете последнюю версию" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Доступна новая версия: " -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "У вас установлена предварительная версия LibreTime." -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "Доступен патч обновлений для текущей версии LibreTime." -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "Доступно обновление функций для текущей версии LibreTime." -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "Доступно важное обновление для текущей версии LibreTime." -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "Множественные важные обновления доступны для текущей версии LibreTime. Пожалуйста, обновитесь как можно скорее." -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Добавить в текущий Плейлист" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Добавить в текущий Смарт-блок" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Добавление одного элемента" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Добавление %s элементов" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Вы можете добавить только треки в Смарт-блоки." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Вы можете добавить только треки, Смарт-блоки и веб-потоки в Плейлисты." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Переместите курсор по временной шкале." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "Вы не добавили ни одного трека" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "Вы не добавили ни одного Плейлиста" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "У вас не добавлено ни одного подкаста" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "Вы не добавили ни одного Смарт-блока" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "Вы не добавили ни одного веб-потока" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "Узнать больше о треках" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "Узнать больше о Плейлистах" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "Узнать больше о Подкастах" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "Узнать больше об Смарт-блоках" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "Узнать больше о веб-потоках" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "Выберите «Новый» для создания." -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Добавить" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "Новый" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Редактировать" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "Добавить в расписание" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "Добавить к следующему шоу" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "Добавить к текущему шоу" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "Опубликовать" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Удалить" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Править мета-данные" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Добавить в выбранную Программу" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Выбрать" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Выбрать текущую страницу" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Отменить выбор текущей страницы" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Отменить все выделения" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Вы действительно хотите удалить выбранные элементы?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Запланирован" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "Треки" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "Плейлист" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Название" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Автор" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Альбом" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Битрейт" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Композитор" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Дирижер" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Копирайт" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Закодировано" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Жанр" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Метка" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Язык" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Изменен" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Последнее проигрывание" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Длительность" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Настроение" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Владелец" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Sample Rate" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Номер трека" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Загружено" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Вебсайт" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Год" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Загрузка..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Все" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Файлы" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Плейлисты" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Смарт-блоки" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Веб-потоки" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Неизвестный тип: " -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Вы действительно хотите удалить выбранный элемент?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Загружается ..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Получение данных с сервера ..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "Импорт" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "Импортировано?" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "Посмотреть" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Код ошибки: " -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Сообщение об ошибке: " -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Ввод должен быть положительным числом" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Ввод должен быть числом" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Ввод должен быть в формате: гггг-мм-дд" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Ввод должен быть в формате: чч:мм:сс" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "Мой Подкаст" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Вы загружаете файлы. %sПереход на другой экран отменит процесс загрузки. %sВы уверены, что хотите покинуть страницу?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Открыть медиа-построитель" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "пожалуйста, установите время '00:00:00.0'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "Пожалуйста, укажите допустимое время в секундах. Например: 0.5" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Ваш браузер не поддерживает воспроизведения данного типа файлов: " -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Динамический Блок не подлежит предпросмотру" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Ограничить до: " -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Плейлист сохранен" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Плейлист перемешан" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "LibreTime не уверен в статусе этого файла. Это могло произойти, если файл находится на недоступном удаленном диске или в папке, которая более не доступна для просмотра." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Количество слушателей %s : %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Напомнить мне через одну неделю" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Никогда не напоминать" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Да, помочь LibreTime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Изображение должно быть в формате: jpg, jpeg, png или gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Статический Смарт-блок сохранит критерии и немедленно создаст список воспроизведения в блоке. Это позволяет редактировать и просматривать его в Библиотеке, прежде чем добавить его в Программу." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Динамический Смарт-блок сохраняет только параметры. Контент блока будет сгенерирован только после добавления его в Программу. Вы не сможете просматривать и редактировать содержимое в Библиотеке." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "Желаемая длительность блока не будет достигнута, если %s не найдет достаточно уникальных треков, соответствующих вашим критериям. Поставьте галочку, если хотите, чтобы повторяющиеся треки заполнили остальное время до окончания Программы в Смарт-блоке." -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Смарт-блок перемешан" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Смарт-блок создан и критерии сохранены" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Смарт-блок сохранен" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Подождите..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Выберите модификатор" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "содержит" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "не содержит" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "является" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "не является" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "начинается с" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "заканчивается" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "больше, чем" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "меньше, чем" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "в диапазоне" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Сгенерировать" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Выберите папку хранения" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Выберите папку для просмотра" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2512,961 +1619,1057 @@ msgstr "" "Вы уверены, что хотите изменить папку хранения? \n" " Файлы из вашей Библиотеки будут удалены!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Управление папками медиа-файлов" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Вы уверены, что хотите удалить просматриваемую папку?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Этот путь в настоящий момент недоступен." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Некоторые типы потоков требуют специальных настроек. Подробности об активации %sAAC+ поддержка%s или %sOpus поддержка%s представлены." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Подключено к потоковому серверу" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Поток отключен" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Получение информации с сервера ..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Не удалось подключиться к потоковому серверу" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, fuzzy, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "Если LibreTime находится за маршрутизатором или брандмауэром, вам может понадобиться настроить переадресацию портов и информация в этом поле будет неверной. В этом случае вам необходимо вручную обновить это поле так, чтобы оно показывало верный хост:порт/точка-монтирования, к которому должен подключиться ваш источник. Допустимый диапазон портов находится между 1024 и 49151." -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "Для более подробной информации, пожалуйста, прочитайте %sРуководство %s%s" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Поставьте галочку, для активации мета-данных OGG потока (название композиции, имя исполнителя и название Программы). В VLC и mplayer наблюдается серьезная ошибка при воспроизведении потоков OGG/VORBIS, в которых мета-данные включены: они будут отключаться от потока после каждой песни. Если вы используете поток OGG и ваши слушатели не требуют поддержки этих аудиоплееров - можете смело включить эту опцию." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Поставьте галочку, для автоматического отключения внешнего источника Master или Show от сервера LibreTime." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Поставьте галочку, для автоматического подключения внешнего источника Master или Show к серверу LibreTime." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Если ваш сервер Icecast ожидает логин «source» - это поле можно оставить пустым." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Если ваш клиент потокового вещания не запрашивает логин, укажите в этом поле «source»." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "ВНИМАНИЕ: Данная операция перезапустит поток и может повлечь за собой отключение слушателей на короткое время!" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Имя пользователя администратора и его пароль от Icecast/Shoutcast сервера, используется для сбора статистики о слушателях." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Внимание: Вы не можете изменить данное поле, пока Программа в эфире" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Не найдено" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "Действует та же схема безопасности Программы: только пользователи, назначенные для этой Программы, могут подключиться." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Укажите пользователя, который будет работать только в этой Программе." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Программы больше не существует!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Внимание: Программы не могут быть пересвязаны" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Связывая ваши повторяющиеся Программы любые запланированные медиа-элементы в любой повторяющейся Программе будут также запланированы в других повторяющихся Программах" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Часовой пояс по умолчанию установлен на часовой пояс радиостанции. Программы в календаре будут отображаться по вашему местному времени, заданному в настройках вашего пользователя в интерфейсе часового пояса." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Программа" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Пустая Программа" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1 мин" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5 мин" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10 мин" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15 мин" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30 мин" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60 мин" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Получение данных с сервера ..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "В этой Программе нет запланированного контента." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Данная Программа не до конца заполнена контентом." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Январь" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Февраль" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Март" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Апрель" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Май" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Июнь" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Июль" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Август" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Сентябрь" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Октябрь" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Ноябрь" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Декабрь" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Янв" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Фев" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Март" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Апр" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Июн" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Июл" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Авг" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Сент" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Окт" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Нояб" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Дек" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "Сегодня" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "День" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "Неделя" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "Месяц" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Воскресенье" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Понедельник" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Вторник" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Среда" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Четверг" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Пятница" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Суббота" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Вс" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Пн" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Вт" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Ср" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Чт" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Пт" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Сб" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Программы, превышающие время, запланированное в расписании, будут обрезаны следующей Программой." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Отменить эту Программу?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Остановить запись текущей Программы?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Оk" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Содержимое Программы" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Удалить все содержимое?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Удалить выбранные элементы?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Начало" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Конец" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Длительность" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "Фильтрация " -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr " из " -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr " записи" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "Нет Программ, запланированных в указанный период времени." -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Начало звучания" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Окончание звучания" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Сведение" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Затухание" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Программа пуста" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Запись с линейного входа" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Предпросмотр трека" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Нельзя планировать вне рамок Программы." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Перемещение одного элемента" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Перемещение %s элементов" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Сохранить" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Отменить" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Редактор затухания" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Редактор начала трека" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Функционал звуковой волны доступен в браузерах с поддержкой Веб-Аудио API" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Выбрать все" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Снять выделения" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "Обрезать пересекающиеся Программы" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Удалить выбранные запланированные элементы" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Перейти к текущей проигрываемой дорожке" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "Перейти к текущему треку" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Отмена текущей Программы" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Открыть Библиотеку, чтобы добавить или удалить содержимое" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Добавить/удалить содержимое" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "используется" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Диск" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Посмотреть" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Открыть" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Админ" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "Диджей" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Менеджер" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Гость" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Гости могут следующее:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "- Видеть запланированные Программы;" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "- Видеть содержимое Программы;" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "DJ может:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "- Управлять контентом назначенной ему Программы;" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "- Импортировать медиа-файлы;" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "- Создавать Плейлисты, Смарт-блоки и веб-потоки;" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "- Управлять собственным контентом в Библиотеке;" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "Менеджеры Программ могут следующее:" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "- Видеть и управлять контентом Программы;" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "- Планировать Программы;" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "- Управлять всем контентом Библиотеки;" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Администраторы могут:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "- Управлять настройками;" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "- Управлять пользователями;" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "- Управлять просматриваемыми папками;" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "- Отправлять отзыв поддержке;" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "- Видеть Статус Системы;" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "- Получить доступ к истории воспроизведений;" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "- Видеть статистику слушателей;" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Показать/скрыть столбцы" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "Столбцы" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "С {from} до {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "кбит/с" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "гггг-мм-дд" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "чч:мм:сс.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "кГц" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Вс" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Пн" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Вт" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Ср" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Чт" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Пт" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Сб" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Закрыть" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Часы" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Минуты" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Готово" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Выбрать файлы" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Добавьте файлы в очередь загрузки и нажмите кнопку Старт." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Добавить файлы" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Остановить загрузку" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Начать загрузку" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Добавить файлы" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Загружено %d/%d файлов" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "н/д" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Перетащите файлы сюда." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Неверное расширение файла." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Неверный размер файла." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Ошибка подсчета файла." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Ошибка инициализации." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "Ошибка HTTP." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Ошибка безопасности." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Общая ошибка." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "Ошибка записи/чтения." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Файл: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d файлов в очереди" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Файл: %f, размер: %s, максимальный размер файла: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "URL загрузки указан неверно или не существует" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Ошибка: Файл слишком большой: " -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Ошибка: Неверное расширение файла: " -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Установить по умолчанию" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Создать" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Редактировать историю" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Нет программы" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "Скопировано %s строк %s в буфер обмена" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sПредпросмотр печати%sПожалуйста, используйте функцию печати для вашего браузера для печати этой таблицы. Нажмите Esc после завершения." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "Новая Программа" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "Новая запись в журнале" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "В таблице нет данных" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "(отфильтровано из _MAX_ записей)" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "Первая" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "Последняя" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "Следующая" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "Предыдущая" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "Поиск:" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "Записи отсутствуют." -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "Перетащите треки сюда из Библиотеки" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "В течение выбранного периода времени треки не воспроизводились." -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "Снять с публикации" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "Результаты не найдены." -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "Автор" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Описание" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "Ссылка" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "Дата публикации" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "Статус загрузки" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "Действия" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "Удалить из Библиотеки" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "Успешно загружено" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "Показать _MENU_" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "Показать _MENU_ записей" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "Записи с _START_ до _END_ из _TOTAL_ записей" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "Показано с _START_ по _END_ из _TOTAL_ треков" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "Показано с _START_ по _END_ из _TOTAL_ типов трека" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "Показано с _START_ по _END_ из _TOTAL_ пользователей" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "Записи с 0 до 0 из 0 записей" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "Показано с 0 по 0 из 0 треков" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "Вы уверены что хотите удалить этот тип трека?" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "Типы треков не были найдены." -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "Типы треков не найдены" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "Не найдено подходящих типов треков" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Включено" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Отключено" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "Отменить загрузку" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "Тип" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "Содержимое автозагружаемого Плейлиста добавляется в Программу за один час до ее выхода в эфир. Больше информации" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "Настройки подкаста сохранены" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "Вы уверены что хотите удалить этого пользователя?" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "Вы не можете удалить себя!" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "У вас нет опубликованных эпизодов!" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "Вы можете опубликовать ваш загруженный контент из панели «Треки»." -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "Попробовать сейчас" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "

Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.

Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.

" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "Предпросмотр плейлиста" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "Смарт-блок" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "Предпросмотр веб-потока" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "У вас нет разрешений для просмотра Библиотеки" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "С текущего момента" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "Нажмите «Новый» чтобы создать новый" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "Нажмите «Загрузить» чтобы добавить новый" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "Ссылка на ленту" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "Дата импорта" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "Добавить новый подкаст" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." @@ -3474,1895 +2677,1245 @@ msgstr "" "Нельзя планировать аудио вне рамок Программы.\n" "Попробуйте сначала создать Программу" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "Еще ни одного файла не загружено" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "В прямом эфире" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "Не в эфире" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "Офлайн" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "Ничего не запланировано" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "Нажмите «Добавить» чтобы создать новый" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "Пожалуйста введите ваш логин и пароль." + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "Такой пользователь или e-mail не найдены." + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "Неправильно ввели логин или e-mail." + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Неверный логин или пароль. Пожалуйста, попробуйте еще раз." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Вы просматриваете старые версии %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Вы не можете добавить треки в динамические блоки." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "У вас нет разрешения на удаление выбранных %s(s)." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Вы можете добавить треки только в Смарт-блок." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Плейлист без названия" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Смарт-блок без названия" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Неизвестный Плейлист" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Настройки сохранены." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Настройки потока обновлены." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "необходимо указать путь" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Проблема с Liquidsoap ..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "Метод запроса не принят" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Ретрансляция Программы %s от %s в %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "Автоматически сгенерированный Смарт-блок для подкаста" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Выбрать курсор" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Записанный файл не существует" +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Удалить курсор" -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Просмотр мета-данных записанного файла" +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "Программы не существует" -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "Запланировать Треки" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "Очистить Программу" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "Отменить Программу" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "Редактировать этот Экземпляр" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Редактировать Программу" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "Удалить этот Экземпляр" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "Удалить этот Экземпляр и все связанные" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Доступ запрещен" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Невозможно перетащить повторяющиеся Программы" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Невозможно переместить завершившуюся Программу" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Невозможно переместить Программу в прошлое" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Нельзя запланировать пересекающиеся Программы." - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Программа была удалена, потому что записанной Программы не существует!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Подождите один час до ретрансляции." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Трек" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Время начала" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Время окончания" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Пользователь успешно добавлен!" -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Проиграно" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Пользователь успешно обновлен!" -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Настройки успешно обновлены!" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Веб-поток без названия" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Веб-поток сохранен." + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Недопустимые значения." + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Неверно введенный символ" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Укажите день" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Укажите время" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Нужно подождать хотя бы один час для ретрансляции" + +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "Добавить?" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Выбрать Плейлист" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "Повторять Плейлист, пока Программа не заполнится?" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Выбрать критерии" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Битрейт (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Частота дискретизации (кГц)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "часов" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "минут" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "элементы" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "оставшееся время программы" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "Случайно" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "Новые" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "Старые" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "Давно проигранные" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "Недавно проигранные" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "Тип:" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Динамический" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Статический" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "Разрешить повторение треков:" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "Разрешить последнему треку превышать лимит времени:" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "Сортировка треков:" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "Ограничить в:" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Сгенерировать содержимое Плейлиста и сохранить критерии" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Перемешать содержимое Плейлиста" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Интервал не может быть пустым или менее 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Интервал не может быть более 24 часов" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Значение должно быть целым числом" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 является максимально допустимым значением" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Вы должны выбрать Критерии и Модификаторы" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "«Длительность» должна быть в формате '00:00:00'" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Значение должно быть числом" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Значение должно быть меньше, чем 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Значение должно быть менее %s символов" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Значение не может быть пустым" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC номер:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "Опубликовать..." - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Импорт папки:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Просматриваемые папки:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Не является допустимой папкой" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Связать?" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Тип повтора:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "еженедельно" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "каждые 2 недели" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "каждые 3 недели" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "каждые 4 недели" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "ежемесячно" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Выберите дни недели:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Повторять:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "день месяца" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "день недели" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Дата окончания:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Бесконечно?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Дата окончания должна быть после даты начала" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Укажите день повтора" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Поля не могут быть пустыми" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' не соответствует формату времени 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "Время начала:" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "В будущем:" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "Время завершения:" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Часовой пояс:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Повторы?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Нельзя создать Программу в прошлом" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Нельзя изменить дату/время начала Программы, которая уже началась" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Дата/время окончания не могут быть в прошлом" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Не может длиться меньше 0 мин." - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Не может длиться 00 ч 00 мин" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Программа не может длиться больше 24 часов" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Логин:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Пароль:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Пароль еще раз:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Имя:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Фамилия:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Номер телефона:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Категория:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Логин не является уникальным." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "Использовать %s Аутентификацию:" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Использование пользовательской идентификации:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Пользовательский логин" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Пользовательский пароль" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "Хост:" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "Порт:" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "Точка монтирования:" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "Поле «Логин» не может быть пустым." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "Поле «Пароль» не может быть пустым." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Язык радиостанции" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Запись с линейного входа?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Часовой пояс станции:" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ретрансляция?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Приватность ленты" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "дней" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "Публичный" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Связать?" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "Частный" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Тип повтора:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Дата начала:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "еженедельно" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Неверно введенный символ" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "каждые 2 недели" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Поиск пользователей:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "каждые 3 недели" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Диджеи:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "каждые 4 недели" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Фильтровать по Программам" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "ежемесячно" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Все мои Программы:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Выберите дни недели:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Мои Программы" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Повторять:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "день месяца" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "день недели" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Дата окончания:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Бесконечно?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Дата окончания должна быть после даты начала" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Укажите день повтора" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Цвет фона:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Цвет текста:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "Текущий логотип:" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "Логотип Программы:" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "Предпросмотр логотипа:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Укажите день" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Имя:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Укажите время" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Нужно подождать хотя бы один час для ретрансляции" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Программа без названия" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Жанр:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Описание:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "Описание экземпляра:" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' не соответствует формату времени 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "Время начала:" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "В будущем:" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "Время завершения:" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Длительность:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Часовой пояс:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Повторы?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Нельзя создать Программу в прошлом" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Нельзя изменить дату/время начала Программы, которая уже началась" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Дата/время окончания не могут быть в прошлом" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Не может длиться меньше 0 мин." + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Не может длиться 00 ч 00 мин" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Программа не может длиться больше 24 часов" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Нельзя запланировать пересекающиеся Программы." + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Поиск пользователей:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Диджеи:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "Название типа" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "Код:" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "Видимость:" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Логин:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Пароль:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Пароль еще раз:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Имя:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Фамилия:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Номер телефона:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Категория:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Логин не является уникальным." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Удалить все треки в Библиотеке" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Дата начала:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Название:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Автор:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Альбом:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Год:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Метка:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Композитор:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Исполнитель:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Настроение:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Авторское право:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC номер:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Сайт:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Язык:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "Опубликовать..." + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Время начала" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Время окончания" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Часовой пояс:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Название Станции:" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "Описание Станции:" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Логотип Станции:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Стандартная длительность сведения треков (сек):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "Пожалуйста введите время в секундах (например 0.5)" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Сведение по умолчанию (сек):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Затухание по умолчанию (сек):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "Вступительный автозагружаемый плейлист (Intro)" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "Завершающий автозагружаемый плейлист (Outro)" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Перезапись мета-тегов эпизодов Подкастов:" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков." -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды." -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "Разрешить публичный API для LibreTime?" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Требуется для встраиваемого виджета-расписания." -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт." -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "Разрешенные адреса CORS:" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "Внешние URL адреса, которым разрешен доступ к данному экземпляру LibreTime в браузере. Укажите каждый адрес отдельной строкой." -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Язык по умолчанию:" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Часовой пояс станции:" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Неделя начинается с:" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "Отображать кнопку «Вход» на Странице Радио?" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Запись с линейного входа?" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ретрансляция?" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Электронная почта" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Сбросить пароль" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "Авто-откл. внешнего потока:" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "Авто-вкл. внешнего потока:" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "Затухание при переключ. (сек):" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "Хост для источника Master:" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "Порт для источника Master:" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Разрешены только числа." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "Точка монтирования для источника Master:" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "Хост для источника Show:" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "Порт для источника Show:" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "Точка монтирования для источника Show:" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Вход" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Пароль" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Подтвердить новый пароль" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Подтверждение пароля не совпадает с вашим паролем." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Удалить все треки в Библиотеке" +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "Электронная почта" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "Название типа" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Логин" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "Код:" +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Сбросить пароль" -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "Видимость:" +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "Назад" -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "дней" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Активировать:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Мобильный:" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Тип потока:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Тип сервиса:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Аудио каналы:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "Моно" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "Стерео" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Сервер" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Порт" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Точка монтирования" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Администратор" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Пароль администратора" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Сервер не может быть пустым." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Порт не может быть пустым." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Точка монтирования не может быть пустой в Icecast сервер." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Часовой пояс:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Сейчас играет" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "Выбрать поток:" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "Автоопределение наиболее приоритетного потока вещания." -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "Выберите поток:" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr " - Совместимость с мобильными" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr " - Проигрыватель не поддерживает вещание Opus ." -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "Встраиваемый код:" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер." -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Добавить мета-данные вашей станции в TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "Предпросмотр:" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID станции:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "Приватность ленты" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Ключ партнера:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "Публичный" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Идентификатор партнера:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "Частный" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "Язык радиостанции" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' не является действительным адресом электронной почты в формате local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "Фильтровать по Программам" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не соответствует формату даты '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Все мои Программы:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' имеет менее %min% символов" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "Мои Программы" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' имеет более %max% символов" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Выбрать критерии" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' не входит в промежуток '%min%' и '%max%', включительно" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Битрейт (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Пароли не совпадают" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Частота дискретизации (кГц)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "часов" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "минут" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "элементы" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "оставшееся время программы" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "Случайно" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "Новые" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "Старые" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "Давно проигранные" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "Недавно проигранные" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "Тип:" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Динамический" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Статический" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "Разрешить повторение треков:" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "Разрешить последнему треку превышать лимит времени:" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "Сортировка треков:" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "Ограничить в:" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Сгенерировать содержимое Плейлиста и сохранить критерии" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Перемешать содержимое Плейлиста" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Перемешать" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Интервал не может быть пустым или менее 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Интервал не может быть более 24 часов" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Значение должно быть целым числом" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 является максимально допустимым значением" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Вы должны выбрать Критерии и Модификаторы" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "«Длительность» должна быть в формате '00:00:00'" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Значение должно быть числом" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Значение должно быть меньше, чем 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Значение должно быть менее %s символов" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Значение не может быть пустым" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "Аппаратный аудио выход" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "Тип выхода" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "ALSA" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "AO" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "OSS" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "Portaudio" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "Pulseaudio" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "Джек" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Мета-данные Icecast Vorbis" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Мета-данные потока:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Исполнитель - Название трека " -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Программа - Исполнитель - Название трека" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Название станции - Программа" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Мета-данные при выкл. эфире" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Включить коэфф. усиления" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Изменить коэфф. усиления" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "Сервер вещания:" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "Встроенное вещание" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "Вещание на внешние сервера" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "%s год должен быть в пределах 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s - %s - %s недопустимая дата" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s : %s : %s недопустимое время" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "Загрузите несколько треков ниже, чтобы добавить их в вашу Библиотеку!" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "Похоже, что вы еще не загрузили ни одного аудиофайла. %sЗагрузить файл сейчас%s." - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "Нажмите на кнопку «Новая Программа» и заполните необходимые поля." - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "Похоже, что вы не запланировали ни одной Программы. %sСоздать Программу сейчас%s." - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "Для начала вещания завершите текущую связанную Программу, выбрав её и нажав «Завершить Программу»." - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "Связанные Программы необходимо заполнить до их начала. Для начала вещания отмените текущую связанную Программу и запланируйте новую %sнесвязанную Программу сейчас%s." - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "Для начала вещания выберите текущую Программу и выберите «Запланировать Треки»" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "Похоже, что в текущей Программе не хватает треков. %sДобавьте треки в Программу сейчас%s." - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "Выберите следующую Программу и нажмите «Запланировать Треки»" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "Похоже, следующая Программа пуста. %sДобавьте треки в Программу сейчас%s." - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "Английский" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "Афар" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "Абхазский" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "Африкаанс" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "Амхарский" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "Арабский" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "Ассамский" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "Аймара" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "Азербаджанский" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "Башкирский" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "Белорусский" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "Болгарский" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "Бихари" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "Бислама" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "Бенгали" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "Тибетский" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "Бретонский" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "Каталанский" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "Корсиканский" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "Чешский" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "Встроенное вещание" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Активировать:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "Мобильный:" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Тип потока:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Битрейт:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Тип сервиса:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Аудио каналы:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "Моно" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "Стерео" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Сервер" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "Вэльский" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Порт" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "Данский" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "Немецкий" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Название" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "Бутан" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Точка монтирования" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "Греческий" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Администратор" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "Эсперанто" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Пароль администратора" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "Испанский" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Сервер не может быть пустым." -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "Эстонский" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Порт не может быть пустым." -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "Басков" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Точка монтирования не может быть пустой в Icecast сервер." -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "Персидский" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Добавить мета-данные вашей станции в TuneIn?" -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "Финский" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID станции:" -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "Фиджи" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Ключ партнера:" -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "Фарси" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Идентификатор партнера:" -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "Французский" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку." -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "Фризский" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Импорт папки:" -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "Ирландский" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Просматриваемые папки:" -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "Шотландский" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Не является допустимой папкой" -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "Галицийский" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Поля не могут быть пустыми" -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "Гуананский" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' не является действительным адресом электронной почты в формате local-part@hostname" -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "Гуджарати" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не соответствует формату даты '%format%'" -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "Науса" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' имеет менее %min% символов" -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "Хинди" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' имеет более %max% символов" -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "Хорватский" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' не входит в промежуток '%min%' и '%max%', включительно" -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "Венгерский" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Пароли не совпадают" -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "Армянский" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "Интернациональный" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "Интерлинг" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "Инупиак" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "Индонезийский" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "Исландский" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "Итальянский" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "Иврит" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "Японский" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "Иудейский" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "Яванский" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "Грузинский" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "Казахский" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "Гренландский" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "Камбоджийский" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "Каннадский" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "Корейский" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "Кашмирский" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "Курдский" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "Киргизский" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "Латынь" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "Лингала" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "Лаосский" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "Литовский" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "Латвийский" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "Малайзийский" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "Маори" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "Македонский" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "Малаямский" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "Монгольский" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "Молдавский" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "Маратхи" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "Малайзийский" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "Мальтийский" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "Бирманский" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "Науру" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "Непальский" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "Немецкий" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "Норвежский" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "Окситанский" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "(Афан)/Оромур/Ория" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "Панджаби Эм Си" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "Польский" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "Пушту" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "Португальский" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "Кечуа" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "Рэето-романс" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "Кирунди" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "Румынский" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "Русский" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "Киньяруанда" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "Санскрит" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "Синди" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "Сангро" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "Сербский" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "Синигальский" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "Словацкий" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "Славянский" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "Самоанский" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "Шона" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "Сомалийский" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "Албанский" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "Сербский" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "Сисвати" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "Сесото" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "Сунданский" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "Шведский" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "Суахили" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "Тамильский" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "Телугу" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "Таджикский" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "Тайский" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "Тигринья" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "Туркменский" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "Тагальский" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "Сетсвана" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "Тонга" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "Турецкий" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "Тсонга" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "Татарский" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "Тви" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "Украинский" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "Урду" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "Узбекский" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "Въетнамский" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "Волапукский" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "Волоф" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "Хоса" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "Юрубский" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "Китайский" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "Зулу" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "Время станции по умолчанию" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "Время начала и окончания звучания трека не заполнены." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Время начала звучания не может быть позже времени окончания." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Время окончания звучания не может превышать длину трека." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Время окончания звучания не может быть раньше времени начала." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Длительность должна быть более 0 минут" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Длительность должна быть указана в формате '00h 00min'" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL должен быть в формате \"http://домен\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "Длина URL должна составлять не более 512 символов" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Для веб-потока не найдено MIME типа." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Имя веб-потока должно быть заполнено" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Не удалось анализировать XSPF Плейлист" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Не удалось анализировать PLS Плейлист" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Не удалось анализировать M3U Плейлист" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Неверный веб-поток - скорее всего это загрузка файла." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Нераспознанный тип потока: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Ретрансляция %s из %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Выберите страну" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Невозможно переместить элементы из связанных Программ" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Расписание, которое вы просматриваете - устарело!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Вы не допущены к планированию Программы %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Вы не можете добавлять файлы в записываемую Программу." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Программа %s окончилась и не может быть добавлена в расписание." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Программа %s была обновлена ранее!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "Контент в связанных Программах не может быть изменен пока Программа в эфире!" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы." - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Выбранный файл не существует!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s уже просматривается." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s содержит вложенную просматриваемую папку: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s вложено в существующую просматриваемую папку: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s не является действительной папкой." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s не существует в просматриваемом списке." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "Ничего" - -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5373,7 +3926,7 @@ msgstr "" "\n" "Пожалуйста нажми ссылку, чтобы сбросить свой пароль: " -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5384,7 +3937,7 @@ msgstr "" "\n" "Если возникли неполадки, пожалуйста свяжитесь с нашей службой поддержки: %s" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5397,20 +3950,138 @@ msgstr "" "Спасибо,\n" "Команда %s" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "%s Сброс пароля" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "Время начала и окончания звучания трека не заполнены." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Время окончания звучания не может превышать длину трека." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Время начала звучания не может быть позже времени окончания." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Время окончания звучания не может быть раньше времени начала." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "Время загрузки" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "Ничего" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s уже просматривается." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s содержит вложенную просматриваемую папку: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s вложено в существующую просматриваемую папку: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s не является действительной папкой." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s уже установлена в качестве текущей папки хранения или в списке просматриваемых папок." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s не существует в просматриваемом списке." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "При поддержке %s" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Выберите страну" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "живой аудио поток" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Невозможно переместить элементы из связанных Программ" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие расписания)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Расписание, которое вы просматриваете - устарело! (Несоответствие экземпляров)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Расписание, которое вы просматриваете - устарело!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Вы не допущены к планированию Программы %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Вы не можете добавлять файлы в записываемую Программу." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Программа %s окончилась и не может быть добавлена в расписание." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Программа %s была обновлена ранее!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "Контент в связанных Программах не может быть изменен пока Программа в эфире!" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "Нельзя запланировать Плейлист, которой содержит отсутствующие файлы." + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Выбранный файл не существует!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Максимальная продолжительность Программы - 24 часа." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5418,150 +4089,324 @@ msgstr "" "Нельзя планировать пересекающиеся Программы.\n" "Примечание: изменение размера повторяющейся Программы влияет на все ее связанные Экземпляры." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "Время загрузки" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Ретрансляция %s из %s" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "Страница Радио" +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Длительность должна быть более 0 минут" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Календарь" +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Длительность должна быть указана в формате '00h 00min'" -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "Виджеты" +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL должен быть в формате \"http://домен\"" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "Настройки" +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "Длина URL должна составлять не более 512 символов" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Пользователи" +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Для веб-потока не найдено MIME типа." -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "Типы треков" +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Имя веб-потока должно быть заполнено" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Аудио потоки" +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Не удалось анализировать XSPF Плейлист" -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "Аналитика" +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Не удалось анализировать PLS Плейлист" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Шаблоны истории" +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Не удалось анализировать M3U Плейлист" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Статистика по слушателям" +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Неверный веб-поток - скорее всего это загрузка файла." -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "Статистика прослушиваний" +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Нераспознанный тип потока: %s" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "С чего начать" +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Записанный файл не существует" -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Руководство пользователя" +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Просмотр мета-данных записанного файла" -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "Получить справку онлайн" +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "Запланировать Треки" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "Очистить Программу" -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "Что нового?" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "Отменить Программу" -#: legacy/public/setup/rabbitmq-setup.php:72 +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "Редактировать этот Экземпляр" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Редактировать Программу" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "Удалить этот Экземпляр" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "Удалить этот Экземпляр и все связанные" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Доступ запрещен" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Невозможно перетащить повторяющиеся Программы" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Невозможно переместить завершившуюся Программу" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Невозможно переместить Программу в прошлое" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Программа была удалена, потому что записанной Программы не существует!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Подождите один час до ретрансляции." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Трек" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Проиграно" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "Автоматически сгенерированный Смарт-блок для подкаста" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "Веб-потоки" + +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "Не могу подключиться к RabbitMQ серверу! Пожалуйста проверьте, включен ли сервер и все ли верно настроено." -#~ msgid "Facebook" -#~ msgstr "Facebook" +#~ msgid " If not, try
sudo service libretime-celery restart" +#~ msgstr " Если нет - попробуйте запустить
sudo service libretime-celery restart" -#~ msgid "Service Status" -#~ msgstr "Статус службы" +#~ msgid " to " +#~ msgstr " к " -#~ msgid "FAQ" -#~ msgstr "Частые вопросы" +#~ msgid " track matches your search criteria." +#~ msgid_plural " tracks match your search criteria." +#~ msgstr[0] " трек соответствует вашим критериям поиска." +#~ msgstr[1] " трека соответствуют вашим критериям поиска." +#~ msgstr[2] " треков соответствуют вашим критериям поиска." -#~ msgid "View track" -#~ msgstr "Просмотреть трек" +#, php-format +#~ msgid "%01.1fGB of %01.1fGB" +#~ msgstr "%01.1fGB из %01.1fGB" -#~ msgid "Update track" -#~ msgstr "Обновить трек" +#, php-format +#~ msgid "%1$s %2$s is distributed under the %3$s" +#~ msgstr "%1$s %2$s распространяется под %3$s" -#~ msgid "Welcome to the new Airtime Pro!" -#~ msgstr "Добро пожаловать в новый LibreTime!" +#, php-format +#~ msgid "%1$s %2$s, the open radio software for scheduling and remote station management." +#~ msgstr "%1$s %2$s, радио-приложение c открытым кодом для планирования и удаленного управления радиостанцией." -#~ msgid "Support setting updated." -#~ msgstr "Настройка поддержки обновлена." +#, php-format +#~ msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" +#~ msgstr "%1$s Copyright © %2$s Все права защищены.
Поддерживается и распространяется под лицензией %3$s командой %4$s" -#~ msgid "Support Feedback" -#~ msgstr "Отзывы о поддержке" +#, php-format +#~ msgid "%s Version" +#~ msgstr "Версия %s:" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Введите символы, которые вы видите на картинке ниже." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(В целях продвижения вашей станции, опция «Отправить отзывы о поддержке» должна быть включена)." -#~ msgid "Phone:" -#~ msgstr "Телефон:" +#~ msgid "(Required)" +#~ msgstr "*" -#~ msgid "Station Web Site:" -#~ msgstr "Сайт станции:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Веб-сайт вашей радиостанции)" -#~ msgid "Country:" -#~ msgstr "Страна:" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(Только для проверки, не будет опубликовано)" -#~ msgid "City:" -#~ msgstr "Город:" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(чч:мм:сс.t)" -#~ msgid "Station Description:" -#~ msgstr "Описание станции:" +#~ msgid "(ss.t)" +#~ msgstr "(сс.t)" -#~ msgid "Promote my station on %s" -#~ msgstr "Продвигать мою станцию на %s" +#~ msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." +#~ msgstr "* Известно, что для Chrome на Android требуется около 4 секунд для буферизации потока MP3 со скоростью 128 кбит/с. Более низкие битрейты требуют больше времени для буферизации." -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Устанавливая данную отметку я соглашаюсь с %s %sполитикой конфиденциальности%s." +#~ msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#~ msgstr "
Это только предварительный просмотр возможного контента, сгенерированного Смарт-блоком на основе вышеуказанных критериев." -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Вы должны согласиться с политикой конфиденциальности." +#~ msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" +#~ msgstr "ВНИМАНИЕ: Применение этих функций необратимо повлияет на вашу радиостанцию Libretime. Будьте внимательны, прежде чем использовать их!" -#~ msgid "Default License:" -#~ msgstr "Лицензия по умолчанию:" +#~ msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" +#~ msgstr "Ссылка на сброс пароля была отправлена на вашу электронную почту. Пожалуйста проверьте и следуйте инструкциям в прилагаемом письме, чтобы сбросить пароль. Если Вы не видите письмо в папке Входящие, проверьте папку Спам" + +#~ msgid "A track list will be generated when you schedule this smart block into a show." +#~ msgstr "Список воспроизведения будет составлен, как только вы добавите Смарт-блок в Программу." + +#~ msgid "About" +#~ msgstr "О программе" + +#~ msgid "Access Denied!" +#~ msgstr "Доступ запрещен!" + +#~ msgid "Add New Field" +#~ msgstr "Добавить новое поле" + +#~ msgid "Add more elements" +#~ msgstr "Добавить еще элементы" + +#~ msgid "Add this show" +#~ msgstr "Добавить эту Программу" + +#~ msgid "Add to My Facebook Page" +#~ msgstr "Добавить на Facebook" + +#~ msgid "Add tracks to your show" +#~ msgstr "Добавить треки в Программу" + +#~ msgid "Additional Options" +#~ msgstr "Дополнительные настройки" + +#~ msgid "Advanced Search Options" +#~ msgstr "Дополнительные параметры поиска" + +#~ msgid "Advanced options" +#~ msgstr "Дополнительные опции" + +#~ msgid "Air Date" +#~ msgstr "Дата эфира" + +#~ msgid "Airtime Pro has a new look!" +#~ msgstr "LibreTime приобрел новый вид!" #~ msgid "All rights are reserved" #~ msgstr "Все права защищены" -#~ msgid "The work is in the public domain" -#~ msgstr "Работа находится в свободном доступе" +#~ msgid "An error has occurred." +#~ msgstr "Произошла ошибка." + +#~ msgid "Audio Track" +#~ msgstr "Аудиодорожка" + +#~ msgid "Autoloading Playlist" +#~ msgstr "Автозагружаемый Плейлист" + +#~ msgid "Average Listeners" +#~ msgstr "Слушателей в среднем" + +#~ msgid "Bad Request!" +#~ msgstr "Неверный запрос!" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Устанавливая данную отметку я соглашаюсь с %s %sполитикой конфиденциальности%s." + +#~ msgid "Category" +#~ msgstr "Категория" + +#~ msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." +#~ msgstr "Установите галочки в нужных местах и нажмите «Опубликовать» для публикации этого трека в отмеченных сервисах." + +#~ msgid "Choose Days:" +#~ msgstr "Выберите дни:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Выберите экземпляр программы" + +#~ msgid "Choose folder" +#~ msgstr "Выбрать папку" + +#~ msgid "Choose some search criteria above and click Generate to create this playlist." +#~ msgstr "Выберите несколько критериев поиска выше и нажмите кнопку «Сгенерировать», чтобы создать этот Плейлист." + +#~ msgid "City:" +#~ msgstr "Город:" + +#~ msgid "Clear" +#~ msgstr "Очистить" + +#~ msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." +#~ msgstr "Выберите «Календарь» в навигационной панели слева. Нажмите кнопку «Новая Программа» и заполните необходимые поля." + +#~ msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." +#~ msgstr "Выберите вашу Программу в календаре и нажмите «Запланировать Программу». В появившемся окне добавьте треки в вашу Программу." + +#~ msgid "Click the 'Upload' button in the left corner to upload tracks to your library." +#~ msgstr "Нажмите на кнопку «Загрузить» в левом углу, чтобы начать загрузку треков в Библиотеку." + +#~ msgid "Click the box below to promote your station on %s." +#~ msgstr "Кликните отметку ниже для продвижения вашей радиостанции на %s." + +#~ msgid "Code" +#~ msgstr "Код" + +#~ msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." +#~ msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить еженедельное расписание. Настройте высоту и ширину виджета, изменив соответствующие значения «height» и «width» в этом коде." + +#~ msgid "Country:" +#~ msgstr "Страна:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Создание шаблона сводки файлов" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Создание шаблона таблицы логов" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Attribution" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Attribution Noncommercial" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Attribution No Derivative Works" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Attribution Share Alike" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Attribution Noncommercial" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" @@ -5569,85 +4414,726 @@ msgstr "Не могу подключиться к RabbitMQ серверу! По #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Attribution Noncommercial Share Alike" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Attribution Share Alike" + +#~ msgid "Cue In: " +#~ msgstr "Начало звучания: " + +#~ msgid "Cue Out: " +#~ msgstr "Окончание звучания: " + +#~ msgid "Current Import Folder:" +#~ msgstr "Текущая папка импорта:" + +#~ msgid "Cursor" +#~ msgstr "Курсор" + +#~ msgid "" +#~ "Customize the player by configuring the options below. When you are done,\n" +#~ " copy the embeddable code below and paste it into your website's HTML." +#~ msgstr "Измените плеер, настроив параметры ниже. Когда вы закончите, скопируйте встраиваемый код из области ниже и вставьте в необходимый HTML блок на вашем сайте." + +#~ msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." +#~ msgstr "DJ-и могут использовать эти настройки в программном обеспечении для живого вещания, только во время назначенных им Программ." + +#~ msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." +#~ msgstr "DJ-и могут использовать эти настройки для подключения совместимого программного обеспечения и вещать в прямом эфире во время текущей программы. Отметьте DJ-ев ниже." + +#~ msgid "Dangerous Options" +#~ msgstr "Опасные настройки" + +#~ msgid "Dashboard" +#~ msgstr "Панель управления" + +#~ msgid "Database configuration for LibreTime" +#~ msgstr "Конфигурация базы данных LibreTime" + +#~ msgid "Date Range" +#~ msgstr "Выберите интервал дат ниже" + +#~ msgid "Default Length:" +#~ msgstr "Длительность по умолчанию:" + +#~ msgid "Default License:" +#~ msgstr "Лицензия по умолчанию:" + #~ msgid "Default Sharing Type:" #~ msgstr "Способ распространения по-умолчанию:" -#~ msgid "Airtime Pro has a new look!" -#~ msgstr "LibreTime приобрел новый вид!" +#~ msgid "Desktop" +#~ msgstr "Компьютер/ноутбук" +#~ msgid "Disk Space" +#~ msgstr "Дисковое пространство:" + +#~ msgid "Download latest episodes:" +#~ msgstr "Загружать последние эпизоды:" + +#~ msgid "Drag tracks here from your library to add them to the playlist" +#~ msgstr "Перетащите треки сюда из Библиотеки, чтобы добавить их в Плейлист" + +#~ msgid "Drop files here or click to browse your computer." +#~ msgstr "Перенесите файлы сюда или кликните, чтобы выбрать файлы с компьютера." + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Динамический Смарт-блок" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Критерии динамического Смарт-блока: " + +#~ msgid "Edit Metadata..." +#~ msgstr "Править мета-данные..." + +#~ msgid "Editing " +#~ msgstr "Редактирование " + +#~ msgid "Email Sent!" +#~ msgstr "Письмо отправлено!" + +#~ msgid "Empty playlist content" +#~ msgstr "Очистить Плейлист" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Развернуть динамический Блок" + +#~ msgid "Expand Static Block" +#~ msgstr "Развернуть статический Блок" + +#~ msgid "Explicit" +#~ msgstr "Откровенное содержимое" + +#~ msgid "FAQ" +#~ msgstr "Частые вопросы" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "Facebook Radio Player" +#~ msgstr "Радио-плеер для Facebook" + +#~ msgid "Fade in: " +#~ msgstr "Сведение (сек): " + +#~ msgid "Fade in: " +#~ msgstr "Сведение (сек): " + +#~ msgid "Fade out: " +#~ msgstr "Затухание (сек): " + +#~ msgid "Failed" +#~ msgstr "Не удалось" + +#~ msgid "File Path:" +#~ msgstr "Путь к папке:" + +#~ msgid "File Summary" +#~ msgstr "Сводка по файлам" + +#~ msgid "File Summary Templates" +#~ msgstr "Шаблоны сводки файлов" + +#~ msgid "File import in progress..." +#~ msgstr "Добавление файлов в процессе..." + +#~ msgid "Filter History" +#~ msgstr "Фильтр истории" + +#~ msgid "Find" +#~ msgstr "Найти" + +#~ msgid "Find Shows" +#~ msgstr "Найти Программы" + +#~ msgid "First Name" +#~ msgstr "Имя" + +#, php-format #~ msgid "" -#~ "Your favorite features are now even easier to use - and we've even\n" -#~ " added a few new ones! Check out the video above or read on to find out more." -#~ msgstr "Ваши любимые возможности теперь еще проще использовать, и мы даже добавили несколько новых! Просмотрите видео или читайте дальше, чтобы узнать больше." +#~ "For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" +#~ " or %sApple's podcasting documentation%s." +#~ msgstr "Для подробной информации значений данных разделов, пожалуйста просмотрите %sRSS спецификацию%s или %sдокументацию Подкастов Apple%s." + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Для более подробной справки читайте %sруководство пользователя%s ." + +#~ msgid "Forgot your password?" +#~ msgstr "Забыли пароль?" + +#~ msgid "General Fields" +#~ msgstr "Основные поля" + +#~ msgid "Generate Smartblock and Playlist" +#~ msgstr "Создать Смарт-блок и Плейлист" + +#~ msgid "Global" +#~ msgstr "Глобальные настройки" + +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "У вас огромная музыкальная Библиотека? Замечательно! С новой страницей загрузки вы сможете переносить целые папки в персональное хранилище." + +#~ msgid "Help Translate Libretime" +#~ msgstr "Помогите перевести Libretime" + +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." +#~ msgstr "Помогите усовершенствовать %s сообщив нам как вы используете приложение. Информация будет собираться постоянно в целях усовершенствования использования.
Кликните ниже и мы будем знать, какие возможности вы используете." + +#, php-format +#~ msgid "Here's how you can get started using %s to automate your broadcasts: " +#~ msgstr "Как использовать %s для автоматизации ваших трансляций: " + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC номер:" + +#~ msgid "Keywords" +#~ msgstr "Ключевые слова" + +#~ msgid "Last Name" +#~ msgstr "Фамилия" + +#~ msgid "Length:" +#~ msgstr "Длительность:" + +#~ msgid "Limit to " +#~ msgstr "Ограничить до " + +#~ msgid "Listen" +#~ msgstr "Слушать" + +#~ msgid "Listeners" +#~ msgstr "Слушатели" + +#~ msgid "Live Broadcasting" +#~ msgstr "Живое вещание" + +#~ msgid "Live Stream Input" +#~ msgstr "Вход для прямого эфира" + +#~ msgid "Live stream" +#~ msgstr "Прямой эфир" + +#~ msgid "Log Sheet" +#~ msgstr "Лог треков" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Шаблоны таблицы логов" + +#~ msgid "Logout" +#~ msgstr "Выйти" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Похоже, что страница, которую вы ищете, не существует!" + +#~ msgid "Looks like there are no shows scheduled on this day." +#~ msgstr "Похоже, в этот день не запланировано ни одной Программы." + +#~ msgid "MP3/AAC only" +#~ msgstr "Только MP3/AAC" + +#~ msgid "MP3/OGG* only" +#~ msgstr "Только MP3/OGG*" + +#~ msgid "Manage Track Types" +#~ msgstr "Управление типами треков" + +#~ msgid "Manage Users" +#~ msgstr "Управление пользователями" + +#~ msgid "Master Source" +#~ msgstr "Источник: Master" + +#~ msgid "Maximum Number of Listeners" +#~ msgstr "Максимум слушателей" + +#~ msgid "Mobile" +#~ msgstr "Мобильный телефон" + +#~ msgid "Monthly Listener Bandwidth Usage" +#~ msgstr "Ежемесячная пропускная способность слушателей" + +#~ msgid "New Criteria" +#~ msgstr "Новый критерий" + +#~ msgid "New File Summary Template" +#~ msgstr "Новый шаблон сводки файлов" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Новый шаблон лога треков" + +#~ msgid "New Modifier" +#~ msgstr "Новый модификатор" + +#~ msgid "New Track Type" +#~ msgstr "Новый тип" + +#~ msgid "New User" +#~ msgstr "Новый пользователь" + +#~ msgid "New password" +#~ msgstr "Новый пароль" + +#~ msgid "Next:" +#~ msgstr "Следующий:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Нет шаблона сводки файлов" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Нет шаблона таблицы логов" + +#~ msgid "No open playlist" +#~ msgstr "Нет открытого Плейлиста" + +#~ msgid "No smart block currently open" +#~ msgstr "Нет открытого Смарт-блока" + +#~ msgid "No webstream" +#~ msgstr "Нет веб-потока" + +#~ msgid "Now Playing:" +#~ msgstr "Сейчас играет:" + +#~ msgid "Now you're good to go!" +#~ msgstr "Теперь можно двигаться дальше!" + +#~ msgid "OK" +#~ msgstr "OK " + +#~ msgid "ON AIR" +#~ msgstr "В ЭФИРЕ" + +#~ msgid "Oops!" +#~ msgstr "Упс!" + +#~ msgid "Original Length:" +#~ msgstr "Исходная длина трека:" #~ msgid "" #~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" #~ " is easier than ever." #~ msgstr "Интерфейс нашей новой Панели управления теперь имеет мощный функционал с разделами, чтобы обновление ваших треков и Плейлистов было еще проще." -#~ msgid "" -#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -#~ " just a click away, you'll be on air and hands-free in no time." -#~ msgstr "Мы упростили интерфейс, чтобы сделать навигацию проще. С самыми важными инструментами вы в один клик будете в эфире без каких-либо дополнительных действий." +#~ msgid "Output Streams" +#~ msgstr "Исходящие Потоки" -#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -#~ msgstr "У вас огромная музыкальная Библиотека? Замечательно! С новой страницей загрузки вы сможете переносить целые папки в персональное хранилище." +#~ msgid "Override" +#~ msgstr "Переопределить " + +#~ msgid "Override album name with podcast name during ingest." +#~ msgstr "Перезаписывать название Альбома на название Подкаста в процессе загрузки." + +#~ msgid "PDO and PostgreSQL libraries" +#~ msgstr "Библиотеки PDO и PostgreSQL" + +#~ msgid "Page not found!" +#~ msgstr "Страница не найдена!" + +#~ msgid "Password Reset" +#~ msgstr "Сброс пароля" + +#~ msgid "Pending" +#~ msgstr "Ожидание" + +#~ msgid "Phone:" +#~ msgstr "Телефон:" + +#~ msgid "Play" +#~ msgstr "Воспроизвести" + +#~ msgid "Playlist Contents: " +#~ msgstr "Содержимое Плейлиста: " + +#~ msgid "Playlist crossfade" +#~ msgstr "Сведение в Плейлисте" + +#~ msgid "Playout History Templates" +#~ msgstr "Шаблоны истории воспроизведения треков" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Пожалуйста, введите и подтвердите новый пароль ниже." + +#~ msgid "Please enter both your username and email address." +#~ msgstr "Пожалуйста, введите ваши логин и e-mail." + +#~ msgid "Podcast Name: " +#~ msgstr "Название Подкаста: " + +#~ msgid "Podcast URL: " +#~ msgstr "Ссылка на Подкаст: " + +#~ msgid "Podcasts" +#~ msgstr "Подкасты" + +#~ msgid "Powered by LibreTime" +#~ msgstr "При поддержке LibreTime" + +#~ msgid "Previous:" +#~ msgstr "Предыдущий:" + +#~ msgid "Privacy Settings" +#~ msgstr "Настройки конфиденциальности" + +#~ msgid "Promote my station on %s" +#~ msgstr "Продвигать мою станцию на %s" + +#~ msgid "Publish to:" +#~ msgstr "Опубликовать в:" + +#~ msgid "Published on:" +#~ msgstr "Опубликовано в:" + +#~ msgid "Published tracks can be removed or updated below." +#~ msgstr "Опубликованные треки могут быть удалены или обновлены ниже." + +#~ msgid "Publishing" +#~ msgstr "Публикуется" + +#~ msgid "RESET" +#~ msgstr "Сброс " + +#~ msgid "RSS Feed URL:" +#~ msgstr "Ссылка RSS ленты:" + +#~ msgid "RabbitMQ configuration for LibreTime" +#~ msgstr "Конфигурация RabbitMQ для LibreTime" + +#~ msgid "Recent Uploads" +#~ msgstr "Последние загрузки" + +#~ msgid "Record & Rebroadcast" +#~ msgstr "Запись и Ретрансляция" + +#~ msgid "Remove all content from this smart block" +#~ msgstr "Удалить все треки из этого Смарт-блока" + +#~ msgid "Remove watched directory" +#~ msgstr "Удалить просматриваемую папку" + +#~ msgid "Repeat Days:" +#~ msgstr "Повторить в дни:" + +#, php-format +#~ msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" +#~ msgstr "Пересканировать наблюдаемую папку (Полезно для сетевой папки, которая может быть не синхронизирована с %s)." + +#~ msgid "Sample Rate:" +#~ msgstr "Частота дискретизации:" + +#~ msgid "Save playlist" +#~ msgstr "Сохранить Плейлист" + +#~ msgid "Save podcast" +#~ msgstr "Сохранить Подкаст" + +#~ msgid "Save station podcast" +#~ msgstr "Сохранить Подкаст станции" + +#~ msgid "Schedule a show" +#~ msgstr "Запланировать Программу" + +#~ msgid "Scheduled Shows" +#~ msgstr "Запланированные Программы" + +#~ msgid "Scheduling:" +#~ msgstr "Запланировано:" + +#~ msgid "Search Criteria:" +#~ msgstr "Критерии поиска:" + +#~ msgid "Select stream:" +#~ msgstr "Выберите поток:" + +#~ msgid "Service" +#~ msgstr "Служба" + +#~ msgid "Service Status" +#~ msgstr "Статус службы" + +#~ msgid "Set" +#~ msgstr "Установить" + +#~ msgid "Set Cue In" +#~ msgstr "Установить начало звучания" + +#~ msgid "Set Cue Out" +#~ msgstr "Установить окончание звучания" + +#~ msgid "Set Default Template" +#~ msgstr "Установить шаблон по умолчанию" + +#~ msgid "Share" +#~ msgstr "Поделиться" + +#~ msgid "Show Name" +#~ msgstr "Программа" + +#~ msgid "Show Source" +#~ msgstr "Источник: Show" + +#~ msgid "Show Summary" +#~ msgstr "Сводка по программам" + +#~ msgid "Show Waveform" +#~ msgstr "Показать волну трека" + +#~ msgid "Show me what I am sending " +#~ msgstr "Покажите мне, что я отправляю " + +#~ msgid "Shuffle playlist" +#~ msgstr "Перемешать Плейлист" + +#~ msgid "Smartblock and Playlist Generated" +#~ msgstr "Смарт-блок и Плейлист сгенерированы" + +#~ msgid "Smartblock and Playlist generated" +#~ msgstr "Смарт-блок и Плейлист созданы" + +#~ msgid "Source Streams" +#~ msgstr "Внешние источники" + +#~ msgid "Static Smart Block" +#~ msgstr "Статический Смарт-блок" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Содержимое статического Смарт-блока: " + +#~ msgid "Station Description:" +#~ msgstr "Описание станции:" + +#~ msgid "Station Web Site:" +#~ msgstr "Сайт станции:" + +#~ msgid "Stop" +#~ msgstr "Стоп" + +#~ msgid "Storage" +#~ msgstr "Хранилище" + +#~ msgid "Stream " +#~ msgstr "Поток " + +#~ msgid "Stream Compatibility" +#~ msgstr "Совместимость потоков с устройствами" + +#~ msgid "Stream Data Collection Status" +#~ msgstr "Состояние потоков для сбора данных:" + +#~ msgid "Stream Settings" +#~ msgstr "Настройки потока" + +#~ msgid "Stream URL:" +#~ msgstr "URL потока:" + +#~ msgid "Stream URL: " +#~ msgstr "URL потока: " + +#~ msgid "Style" +#~ msgstr "Стиль" + +#~ msgid "Subscribe" +#~ msgstr "Подписаться" + +#~ msgid "Subtitle" +#~ msgstr "Подзаголовок" + +#~ msgid "Summary" +#~ msgstr "Краткое описание" + +#~ msgid "Support Feedback" +#~ msgstr "Отзывы о поддержке" + +#~ msgid "Support setting updated." +#~ msgstr "Настройка поддержки обновлена." + +#~ msgid "Table Test" +#~ msgstr "Таблица тестов" + +#~ msgid "Terms and Conditions" +#~ msgstr "Правила и условия использования" + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Следующая информация будет отображаться слушателям в их плеере:" #~ msgid "" #~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" #~ " experience, no matter how you're connected." #~ msgstr "Новая версия LibreTime плавнее и быстрее на еще большем количестве устройств! Мы стремимся улучшить впечатления от использования LibreTime не зависимо от того, как подключаетесь вы и ваши слушатели." -#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.
Click the box below and we'll make sure the features you use are constantly improving." -#~ msgstr "Помогите усовершенствовать %s сообщив нам как вы используете приложение. Информация будет собираться постоянно в целях усовершенствования использования.
Кликните ниже и мы будем знать, какие возможности вы используете." +#~ msgid "The requested action is not supported!" +#~ msgstr "Запрашиваемое действие не поддерживается!" -#~ msgid "Click the box below to promote your station on %s." -#~ msgstr "Кликните отметку ниже для продвижения вашей радиостанции на %s." +#~ msgid "The work is in the public domain" +#~ msgstr "Работа находится в свободном доступе" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(Только для проверки, не будет опубликовано)" +#~ msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" +#~ msgstr "Затем, перетащите элемент «Радиоплеер» вверх списка и нажмите «Save». Теперь он будет отображаться как одна из вкладок по умолчанию, а не скрываться под «More»" -#~ msgid "Show me what I am sending " -#~ msgstr "Покажите мне, что я отправляю " +#~ msgid "Tips:" +#~ msgstr "Советы:" -#~ msgid "Terms and Conditions" -#~ msgstr "Правила и условия использования" +#~ msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" +#~ msgstr "Чтобы сделать вкладку более заметной на вашей странице Facebook, нажмите «More», затем «Manage Tabs»" -#~ msgid "files meet the criteria" -#~ msgstr "файлы соответствуют критериям" +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Для проигрывания медиа-файла необходимо обновить браузер до последней версии или обновить %sфлэш-плагин%s." -#~ msgid "file meets the criteria" -#~ msgstr "файл соответствует критериям" +#~ msgid "Toggle Details" +#~ msgstr "Отобразить Подробнее" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(В целях продвижения вашей станции, опция «Отправить отзывы о поддержке» должна быть включена)." +#~ msgid "Track:" +#~ msgstr "Трек:" + +#~ msgid "TuneIn Settings" +#~ msgstr "Настройки TuneIn" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Введите символы, которые вы видите на картинке ниже." + +#~ msgid "Update Required" +#~ msgstr "Требуется обновление" + +#~ msgid "Update show" +#~ msgstr "Обновить Программу" + +#~ msgid "Update track" +#~ msgstr "Обновить трек" + +#~ msgid "Upload" +#~ msgstr "Загрузить" + +#~ msgid "Upload audio tracks" +#~ msgstr "Загрузить аудио теки" + +#~ msgid "Use these settings in your broadcasting software to stream live at any time." +#~ msgstr "Используйте эти настройки в программном обеспечении для трансляции в любое время с приоритетом над всеми Программами." + +#~ msgid "User Type" +#~ msgstr "Категория" + +#~ msgid "View Feed" +#~ msgstr "Просмотр Ленты" + +#~ msgid "View track" +#~ msgstr "Просмотреть трек" #~ msgid "Viewing " #~ msgstr "Просмотр " -#~ msgid "Monthly Listener Bandwidth Usage" -#~ msgstr "Ежемесячная пропускная способность слушателей" +#~ msgid "Visibility" +#~ msgstr "Видимость" + +#~ msgid "We couldn't find the page you were looking for." +#~ msgstr "Мы не можем найти страницу, которую Вы пытаетесь открыть." + +#~ msgid "" +#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" +#~ " just a click away, you'll be on air and hands-free in no time." +#~ msgstr "Мы упростили интерфейс, чтобы сделать навигацию проще. С самыми важными инструментами вы в один клик будете в эфире без каких-либо дополнительных действий." + +#~ msgid "Web Stream" +#~ msgstr "Веб-поток" + +#~ msgid "Webstream" +#~ msgstr "Веб-поток" + +#, php-format +#~ msgid "Welcome to %s!" +#~ msgstr "Добро пожаловать %s!" + +#, php-format +#~ msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." +#~ msgstr "Добро пожаловать в %s демо! Вы можете авторизоваться, введя логин 'admin' и пароль 'admin'." + +#~ msgid "Welcome to the new Airtime Pro!" +#~ msgstr "Добро пожаловать в новый LibreTime!" + +#~ msgid "What" +#~ msgstr "Что" + +#~ msgid "When" +#~ msgstr "Когда" + +#~ msgid "Who" +#~ msgstr "Кто" + +#~ msgid "Yes (Flash)" +#~ msgstr "Да (Flash)" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Не выставлена просматриваемая папка с треками." + +#~ msgid "You can change these later in your preferences and user settings." +#~ msgstr "Это можно настроить позже в настройках пользователя." + +#~ msgid "You do not have permission to access this page!" +#~ msgstr "У Вас нет прав для просмотра данной страницы!" + +#~ msgid "You do not have permission to edit this track." +#~ msgstr "У вас нет прав на изменение этого трека." + +#~ msgid "You have already published this track to all available sources!" +#~ msgstr "Вы уже опубликовали этот трек во всех возможных источниках!" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Вы должны согласиться с политикой конфиденциальности." + +#~ msgid "You haven't published this track to any sources!" +#~ msgstr "Вы еще нигде не публиковали данный трек!" + +#~ msgid "" +#~ "Your favorite features are now even easier to use - and we've even\n" +#~ " added a few new ones! Check out the video above or read on to find out more." +#~ msgstr "Ваши любимые возможности теперь еще проще использовать, и мы даже добавили несколько новых! Просмотрите видео или читайте дальше, чтобы узнать больше." #~ msgid "Your trial expires in" #~ msgstr "Ваш ознакомительный период истекает через" -#~ msgid "Smartblock and Playlist Generated" -#~ msgstr "Смарт-блок и Плейлист сгенерированы" +#~ msgid "and" +#~ msgstr "и" -#~ msgid "Override album name with podcast name during ingest." -#~ msgstr "Перезаписывать название Альбома на название Подкаста в процессе загрузки." +#~ msgid "dB" +#~ msgstr "дБ" -#~ msgid "Record & Rebroadcast" -#~ msgstr "Запись и Ретрансляция" +#~ msgid "file meets the criteria" +#~ msgstr "файл соответствует критериям" -#~ msgid "Help Translate Libretime" -#~ msgstr "Помогите перевести Libretime" +#~ msgid "files meet the criteria" +#~ msgstr "файлы соответствуют критериям" -#~ msgid " If not, try
sudo service libretime-celery restart" -#~ msgstr " Если нет - попробуйте запустить
sudo service libretime-celery restart" +#~ msgid "iTunes Fields" +#~ msgstr "Данные iTunes" -#~ msgid "Powered by LibreTime" -#~ msgstr "При поддержке LibreTime" +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "Макс. громкость" + +#~ msgid "mute" +#~ msgstr "Без звука" + +#~ msgid "next" +#~ msgstr "следующий" #~ msgid "of" #~ msgstr "из" + +#~ msgid "or" +#~ msgstr "или" + +#~ msgid "pause" +#~ msgstr "пауза" + +#~ msgid "play" +#~ msgstr "играть" + +#~ msgid "previous" +#~ msgstr "предыдущая" + +#~ msgid "stop" +#~ msgstr "стоп" + +#~ msgid "unmute" +#~ msgstr "Включить звук" diff --git a/legacy/locale/si/LC_MESSAGES/libretime.po b/legacy/locale/si/LC_MESSAGES/libretime.po deleted file mode 100644 index a75fbe82f..000000000 --- a/legacy/locale/si/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5459 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Sinhala (http://www.transifex.com/sourcefabric/airtime/language/si/)\n" -"Language: si\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/sr_RS/LC_MESSAGES/libretime.po b/legacy/locale/sr_RS/LC_MESSAGES/libretime.po index 675853d6d..5cee7e10e 100644 --- a/legacy/locale/sr_RS/LC_MESSAGES/libretime.po +++ b/legacy/locale/sr_RS/LC_MESSAGES/libretime.po @@ -1,2495 +1,1603 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Sourcefabric , 2013 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Serbian (Serbia) (http://www.transifex.com/sourcefabric/airtime/language/sr_RS/)\n" +"Language-Team: Serbian (Serbia)\n" "Language: sr_RS\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Пријава" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Година %s мора да буде у распону између 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Нова лозинка" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Унеси и потврди своју нову лозинку у поља доле." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Историја Пуштених Песама" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Списак Пријава" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Датотечни Извештај" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Програмски Извештај" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Управљање Медијске Мапе" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Преносна Подешавања" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Сачувај" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Пренос" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Обавезно)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Додатне Опције" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Следеће информације ће да буде приказане слушаоцима у медијском плејерима:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Твоја радијска станица веб странице)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL Преноса:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "или" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "и" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "до" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Одабери Емисијску Степену" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Нема Програма" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Пронађи" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Одабери фолдер" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Подеси" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Актуална Увозна Мапа:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Додај" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s није исправан датум" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Уклони надзорану директоријуму" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Не пратиш ниједне медијске мапе." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Одабери Дане:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Уклони" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Поновљени Дани:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Пронађи Емисије" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Филтрирај Историје" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Emisijski Izvor" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Мајсторски Извор" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "ОК" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s није исправан датум" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Управљање Кориснике" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Нови Корисник" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Корисничко име" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Име" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Презиме" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Врста Корисника" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Проширење Статичког Bloка" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Проширење Динамичког Блока" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Назив:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Опис:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Трајање:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Случајни избор списак песама" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Мешање" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Крижно утишавање списак песама" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Празан садржај списак песама" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Очисти" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Затамњење:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Одустани" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Сачувај списак песама" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Нема отворених списак песама" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Емисијски звучни таласни облик" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Одтамњење:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Оригинална Дужина:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "у употреби" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Све" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Напредне Опције Претраживања" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Опис" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL Преноса:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Задата Дужина:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Нема преноса" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Затвори" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Назив" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Творац" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Језик" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Ауторско право" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Увоз датотеке је у току..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Назив:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Творац:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Aлбум:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Песма:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Дужина:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Узорак Стопа:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Брзина у Битовима:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Расположење:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Жанр:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Година:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Налепница:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Композитор:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Диригент:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Ауторско право:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc Број:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Веб страница:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Језик:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Стажа Датотека:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Пренос" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Динамички Паметан Блок" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Статички Паметан Блок" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Звучни Запис" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Садржаји Списак Песама:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Статички Паметан Блок Садржаји:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Динамички Паметан Блок Критеријуми:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Ограничено за" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Стање" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Дисковни Простор" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "претходна" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Календар" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "покрени" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "пауза" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "следећа" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "заустави" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "mute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "укључи" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "макс гласноћа" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Потребно Ажурирање" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Медија је потребна за репродукцију, и мораш да ажурираш свој претраживач на новију верзију, или да ажурираш свој %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Стварање Шаблона за Датотечни Сажеци" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Стварање Листу Шаблона" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Додај више елемената" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Додај Ново Поље" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Подеси Подразумевано Шаблону" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Шаблони Списак Пријаве" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Нови Листу шаблона" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Нема Листу Шаблона" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Постави Подразумевано" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Шаблони за Датотечни Сажеци" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Нови Шаблон за Датотечни Сажеци" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Нема Шаблона за Датотечни Сажеци" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "О пројекту" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "За детаљну помоћ, прочитај %sупутство за коришћење%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Пренос уживо" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Подели" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Преноси:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Додај ову емисију" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Ажурирање емисије" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Шта" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Када" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Улаз Уживног Преноса" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Ко" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Стил" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Почетак" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Назив" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Албум" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Дужина" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Жанр" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Налепница" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Претходна:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Следећа:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Преносни Извори" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "ПРЕНОС" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Слушај" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Одјава" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Листе песама" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Block-ови" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Корисници" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Преноси" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Стање" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Историја Пуштених Песама" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Историјски Шаблони" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Слушатељска Статистика" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Помоћ" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Почетак Коришћења" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Упутство" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Страница није пронађена!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Изгледа страница коју си тражио не постоји!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Аудио Уређај" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Покрени" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Стани" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Подеси Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Подеси Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Показивач" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Одтамњење" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Затамњење" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Немаш допуштење да искључиш извор." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Нема спојеног извора на овај улаз." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Немаш дозволу за промену извора." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Неименовани Пренос" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Пренос је сачуван." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Неважећи вредности обрасца." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Корисник је успешно додат!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Корисник је успешно ажуриран!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Подешавања су успешно ажуриране!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Преглед" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Одабери показивач" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Уклони показивач" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Обриши" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "емисија не постоји" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Подешавања су ажуриране." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Пренос Подешавање је Ажурирано." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "пут би требао да буде специфициран" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Проблем са Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s није пронађен" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Нешто је пошло по криву." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Додај на Списак Песама" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Додај у Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Преузимање" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Удвостручавање" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Нема доступних акција" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Немаш допуштење за брисање одабране ставке." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Копирање од %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Не смеш да приступиш овог извора." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Не смеш да приступите овог извора." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Неисправан захтев." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Неисправан захтев" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Немаш допуштење да искључиш извор." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Нема спојеног извора на овај улаз." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Немаш дозволу за промену извора." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Гледаш старију верзију %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Не можеш да додаш песме за динамичне блокове." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Немаш допуштење за брисање одабраног (е) %s." +msgid "%s not found" +msgstr "%s није пронађен" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Можеш само песме да додаш за паметног блока." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Нешто је пошло по криву." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Преглед" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Неименовани Списак Песама" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Додај на Списак Песама" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Неименовани Smart Block" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Додај у Smart Block" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Непознати Списак Песама" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Обриши" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Преузимање" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Удвостручавање" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Нема доступних акција" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Немаш допуштење за брисање одабране ставке." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Копирање од %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Молимо, провери да ли је исправан/на админ корисник/лозинка на страници Систем->Преноси." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Аудио Уређај" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Снимање:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Мајсторски Пренос" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Пренос Уживо" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Ништа по распореду" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Садашња Емисија:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Тренутна" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Ти имаш инсталирану најновију верзију" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Нова верзија је доступна:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Додај у тренутни списак песама" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Додај у тренутни smart block" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Додавање 1 Ставке" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Додавање %s Ставке" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Можеш да додаш само песме код паметних блокова." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Можеш само да додаш песме, паметне блокова, и преносе код листе нумера." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Молимо одабери место показивача на временској црти." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Додај" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Уређивање" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Уклони" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Уреди Метаподатке" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Додај у одабраној емисији" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Одабери" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Одабери ову страницу" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Одзначи ову страницу" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Одзначи све" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Јеси ли сигуран да желиш да избришеш одабрану (е) ставу (е)?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Заказана" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Назив" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Творац" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Албум" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Пренос Бита" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Композитор" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Диригент" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Ауторско право" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Кодирано је по" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Жанр" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Налепница" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Језик" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Последња Измена" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Задњи Пут Одиграна" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Дужина" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Расположење" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Власник" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Узорак Стопа" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Број Песма" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Додата" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Веб страница" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Година" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Учитавање..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Све" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Датотеке" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Листе песама" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Block-ови" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Преноси" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Непознати тип:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Јеси ли сигуран да желиш да обришеш изабрану ставку?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Пренос је у току..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Преузимање података са сервера..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Шифра грешке:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Порука о грешци:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Мора да буде позитиван број" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Мора да буде број" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Мора да буде у облику: гггг-мм-дд" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Мора да буде у облику: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Тренутно је пренос датотеке. %sОдлазак на другом екрану ће да откаже процес слања. %s" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Отвори Медијског Градитеља" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "молимо стави у време '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Твој претраживач не подржава ову врсту аудио фајл:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Динамички блок није доступан за преглед" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Ограничити се на:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Списак песама је спремљена" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Списак песама је измешан" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Airtime је несигуран о статусу ове датотеке. То такође може да се деси када је датотека на удаљеном диску или је датотека у некој директоријуми, која се више није 'праћена односно надзирана'." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Број Слушалаца %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Подсети ме за 1 недељу" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Никад ме више не подсети" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Да, помажем Airtime-у" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Слика мора да буде jpg, jpeg, png, или gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Статички паметни блокови спремају критеријуме и одмах генеришу блок садржаја. То ти омогућава да уредиш и видиш га у библиотеци пре него што га додаш на емисију." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Динамички паметни блокови само критеријуме спремају. Блок садржаја ће се генерише након што га додамо на емисију. Нећеш моћи да прегледаш и уређиваш садржај у библиотеци." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart block је измешан" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Smart block је генерисан и критеријуме су спремне" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Smart block је сачуван" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Обрада..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Одабери модификатор" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "садржи" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "не садржи" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "је" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "није" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "почиње се са" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "завршава се са" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "је већи од" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "је мањи од" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "је у опсегу" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Генериши" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Одабери Мапу за Складиштење" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Одабери Мапу за Праћење" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2497,2855 +1605,2301 @@ msgstr "" "Јеси ли сигуран да желиш да промениш мапу за складиштење?\n" "То ће да уклони датотеке из твоје библиотеке!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Управљање Медијске Мапе" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Јеси ли сигуран да желиш да уклониш надзорску мапу?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Овај пут није тренутно доступан." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Неке врсте емитовање захтевају додатну конфигурацију. Детаљи око омогућавања %sAAC+ Подршке%s или %sOpus Подршке%s су овде доступни." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Прикључен је на серверу" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Пренос је онемогућен" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Добијање информација са сервера..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Не може да се повеже на серверу" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Провери ову опцију како би се омогућило метаподатака за OGG потоке." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Провери ову кућицу за аутоматско искључење Мајстор/Емисија извора, након престанка рада извора." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Провери ову кућицу за аутоматско пребацивање на Мајстор/Емисија извора, након што је спојен извор." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Ако твој Icecast сервер очекује корисничко име из 'извора', ово поље може да остане празно." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Ако твој 'live streaming' клијент не пита за корисничко име, ово поље требало да буде 'извор'." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Ово је админ корисничко име и лозинка за Icecast/SHOUTcast да би добио слушатељску статистику." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Упозорење: Не можеш променити садржај поља, док се садашња емисија не завршава" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Нема пронађених резултата" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "То следи исти образац безбедности за емисије: само додељени корисници могу да се повеже на емисију." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Одреди прилагођене аутентификације које ће да се уважи само за ову емисију." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Емисија у овом случају више не постоји!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Упозорење: Емисије не може поново да се повеже" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Повезивањем своје понављајуће емисије свака заказана медијска става у свакој понављајућим емисијама добиће исти распоред такође и у другим понављајућим емисијама" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Временска зона је постављена по станичну зону према задатим. Емисије у календару ће се да прикаже по твојим локалном времену која је дефинисана у интерфејса временске зоне у твојим корисничким поставци." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Емисија" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Емисија је празна" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Добијање података са сервера..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Ова емисија нема заказаног садржаја." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Ова емисија није у потпуности испуњена са садржајем." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Јануар" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Фебруар" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Март" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "Април" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Мај" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Јун" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Јул" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Август" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Септембар" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Октобар" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Новембар" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Децембар" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Јан" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Феб" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Мар" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Апр" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Јун" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Јул" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Авг" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Сеп" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Окт" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Нов" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Дец" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Недеља" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Понедељак" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Уторак" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Среда" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Четвртак" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Петак" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Субота" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Нед" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Пон" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Уто" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Сре" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Чет" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Пет" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Суб" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Емисија дуже од предвиђеног времена ће да буде одсечен." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Откажи Тренутног Програма?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Заустављање снимање емисије?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ок" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Садржај Емисије" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Уклониш све садржаје?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Обришеш ли одабрану (е) ставу (е)?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Почетак" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Завршетак" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Трајање" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Одтамњење" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Затамњење" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Празна Емисија" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Снимање са Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Преглед песма" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Не може да се заказује ван емисије." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Премештање 1 Ставка" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Премештање %s Ставке" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Сачувај" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Одустани" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Уређивач за (Од-/За-)тамњивање" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Cue Уређивач" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Таласни облик функције су доступне у споредну Web Audio API прегледачу" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Одабери све" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Не одабери ништа" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Уклони одабране заказане ставке" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Скочи на тренутну свирану песму" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Поништи тренутну емисију" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Отвори библиотеку за додавање или уклањање садржаја" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Додај / Уклони Садржај" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "у употреби" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Диск" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Погледај унутра" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Отвори" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Администратор" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "Диск-џокеј" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Водитељ Програма" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Гост" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Гости могу да уради следеће:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Преглед распореда" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Преглед садржај емисије" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "Диск-џокеји могу да уради следеће:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Управљање додељен садржај емисије" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Увоз медијске фајлове" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Изради листе песама, паметне блокове, и преносе" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Управљање своје библиотечког садржаја" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Приказ и управљање садржај емисије" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Распоредне емисије" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Управљање све садржаје библиотека" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Администратори могу да уради следеће:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Управљање подешавања" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Управљање кориснике" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Управљање надзираних датотеке" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Пошаљи повратне информације" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Преглед стања система" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Приступ за историју пуштених песама" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Погледај статистику слушаоце" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Покажи/сакриј колоне" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Од {from} до {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "гггг-мм-дд" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Не" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "По" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Ут" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Ср" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Че" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Пе" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Су" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Затвори" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Сат" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Минута" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Готово" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Изабери датотеке" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Додај датотеке и кликни на 'Покрени Upload' дугме." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Додај Датотеке" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Заустави Upload" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Покрени upload" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Додај датотеке" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Послата %d/%d датотека" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Повуци датотеке овде." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Грешка (ознаку типа датотеке)." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Грешка величине датотеке." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Грешка број датотеке." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Init грешка." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "HTTP Грешка." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Безбедносна грешка." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Генеричка грешка." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "IO грешка." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Фајл: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d датотека на чекању" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Датотека: %f, величина: %s, макс величина датотеке: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Преносни URL може да буде у криву или не постоји" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Грешка: Датотека је превелика:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Грешка: Неважећи ознак типа датотека:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Постави Подразумевано" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Стварање Уноса" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Уреди Историјат Уписа" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Нема Програма" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s ред%s је копиран у међумеморију" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sИспис поглед%sМолимо, користи прегледача штампање функцију за штампање ову табелу. Кад завршиш, притисни Escape." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Опис" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Омогућено" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Онемогућено" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "Е-маил није могао да буде послат. Провери своје поставке сервера поште и провери се да је исправно подешен." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Гледаш старију верзију %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Не можеш да додаш песме за динамичне блокове." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Немаш допуштење за брисање одабраног (е) %s." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Можеш само песме да додаш за паметног блока." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Неименовани Списак Песама" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Неименовани Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Непознати Списак Песама" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Подешавања су ажуриране." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Пренос Подешавање је Ажурирано." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "пут би требао да буде специфициран" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Проблем са Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Реемитовање емисија %s од %s на %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Одабери показивач" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Уклони показивач" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "емисија не постоји" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Снимљена датотека не постоји" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Метаподаци снимљеног фајла" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Корисник је успешно додат!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Корисник је успешно ажуриран!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Подешавања су успешно ажуриране!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Уређивање Програма" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Неименовани Пренос" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Пренос је сачуван." -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Неважећи вредности обрасца." -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Дозвола одбијена" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Унесени су неважећи знакови" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Не можеш повући и испустити понављајуће емисије" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Дан мора да буде наведен" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Не можеш преместити догађане емисије" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Време мора да буде наведено" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Не можеш преместити емисију у прошлости" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Не можеш заказати преклапајуће емисије" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Емисија је избрисана јер је снимљена емисија не постоји!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Мораш причекати 1 сат за ре-емитовање." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Песма" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Време Почетка" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Време Завршетка" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Пуштена" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Одабери критеријуме" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Брзина у Битовима (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Узорак Стопа (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "сати" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "минути" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "елементи" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Динамички" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Статички" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Генерисање листе песама и чување садржаја критеријуме" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Садржај случајни избор списак песама" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ограничење не може да буде празан или мањи од 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ограничење не може да буде више од 24 сати" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Вредност мора да буде цео број" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 је макс ставу граничну вредност могуће је да подесиш" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Мораш да изабереш Критерију и Модификацију" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Дужина' требала да буде у '00:00:00' облику" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Вредност мора да буде нумеричка" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Вредност би требала да буде мања од 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Вредност мора да буде мања од %s знакова" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Вредност не може да буде празна" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Број:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Увозна Мапа:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Мапе Под Надзором:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Не важећи Директоријум" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Тип Понављање:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "недељно" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "сваке 2 недеље" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "свака 3 недеље" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "свака 4 недеље" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "месечно" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Одабери Дане:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Понављање По:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "дан у месецу" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "дан у недељи" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Датум Завршетка:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Нема Краја?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Датум завршетка мора да буде после датума почетка" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Молимо, одабери којег дана" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Вредност је потребна и не може да буде празан" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' се не уклапа у временском формату 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Временска Зона:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Понављање?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Не може да се створи емисију у прошлости" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Датум завршетка и време не може да буде у прошлости" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Не може да траје < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Не може да траје 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Не може да траје више од 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Корисничко име:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Лозинка:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Потврди Лозинку:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Име:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Презиме:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Е-маил:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Мобилни Телефон:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Типова Корисника:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Име пријаве није јединствено." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Користи Прилагођено потврду идентитета:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Прилагођено Корисничко Име" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Прилагођена Лозинка" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "'Корисничко Име' поља не сме да остане празно." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "'Лозинка' поља не сме да остане празно." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Снимање са Line In?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Станична Временска Зона" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Поново да емитује?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "дани" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Тип Понављање:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Датум Почетка:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "недељно" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Унесени су неважећи знакови" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "сваке 2 недеље" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Тражи Кориснике:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "свака 3 недеље" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Диск-џокеји:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "свака 4 недеље" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "месечно" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Све Моје Емисије:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Одабери Дане:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Понављање По:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "дан у месецу" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "дан у недељи" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Датум Завршетка:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Нема Краја?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Датум завршетка мора да буде после датума почетка" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Молимо, одабери којег дана" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Боја Позадине:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Боја Текста:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Дан мора да буде наведен" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Назив:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Време мора да буде наведено" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Неименована Емисија" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Жанр:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Опис:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' се не уклапа у временском формату 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Трајање:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Временска Зона:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Понављање?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Не може да се створи емисију у прошлости" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Датум завршетка и време не може да буде у прошлости" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Не може да траје < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Не може да траје 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Не може да траје више од 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Не можеш заказати преклапајуће емисије" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Тражи Кориснике:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Диск-џокеји:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Корисничко име:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Лозинка:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Потврди Лозинку:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Име:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Презиме:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Е-маил:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Мобилни Телефон:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Типова Корисника:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Име пријаве није јединствено." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Датум Почетка:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Назив:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Творац:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Aлбум:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Година:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Налепница:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Композитор:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Диригент:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Расположење:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Ауторско право:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Број:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Веб страница:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Језик:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Време Почетка" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Време Завршетка" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Временска Зона Интерфејси:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Назив Станице" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Лого:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Напомена: Све већа од 600к600 ће да се мењају." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Подразумевано Трајање Укрштено Стишавање (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Подразумевано Одтамњење (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Подразумевано Затамњење (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Станична Временска Зона" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Први Дан у Недељи" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Снимање са Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Поново да емитује?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Ресетуј лозинку" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Допуштени су само бројеви." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Пријава" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Лозинка" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Потврди нову лозинку" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Лозинке које сте унели не подударају се." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Корисничко име" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Ресетуј лозинку" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "дани" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Омогућено:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Пренос Типа:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Тип Услуге:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Канали:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Сервер" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Порт" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Тачка Монтирања" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Админ Корисник" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Aдминска Лозинка" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Сервер не може да буде празан." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port не може да буде празан." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Монтирање не може да буде празна са Icecast сервером." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Временска Зона Интерфејси:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Тренутно Извођена" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не одговара по облику датума '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Све Моје Емисије:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' је мањи од %min% дугачко знакова" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' је више од %max% дугачко знакова" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Одабери критеријуме" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' није између '%min%' и '%max%', укључиво" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Брзина у Битовима (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Лозинке се не подударају" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Узорак Стопа (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "сати" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "минути" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "елементи" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Динамички" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Статички" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Генерисање листе песама и чување садржаја критеријуме" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Садржај случајни избор списак песама" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Мешање" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ограничење не може да буде празан или мањи од 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ограничење не може да буде више од 24 сати" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Вредност мора да буде цео број" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 је макс ставу граничну вредност могуће је да подесиш" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Мораш да изабереш Критерију и Модификацију" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Дужина' требала да буде у '00:00:00' облику" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Вредност мора да буде нумеричка" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Вредност би требала да буде мања од 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Вредност мора да буде мања од %s знакова" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Вредност не може да буде празна" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis Метаподаци" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Видљиви Подаци:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Аутор - Назив" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Емисија - Аутор - Назив" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Назив станице - Назив емисије" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Off Air Метаподаци" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Укључи Replay Gain" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Replay Gain Модификатор" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Година %s мора да буде у распону између 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s није исправан датум" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s није исправан датум" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Омогућено:" -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Пренос Типа:" -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Брзина у Битовима:" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Тип Услуге:" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Канали:" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Сервер" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Порт" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Назив" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Тачка Монтирања" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Админ Корисник" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Aдминска Лозинка" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Сервер не може да буде празан." -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port не може да буде празан." -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Монтирање не може да буде празна са Icecast сервером." -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Увозна Мапа:" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Мапе Под Надзором:" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Не важећи Директоријум" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Вредност је потребна и не може да буде празан" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не одговара по облику датума '%format%'" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' је мањи од %min% дугачко знакова" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' је више од %max% дугачко знакова" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' није између '%min%' и '%max%', укључиво" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "'Cue in' и 'cue out' су нуле." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Не можеш да подесиш да 'cue in' буде веће него 'cue out'." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Не можеш да подесиш да 'cue out' буде веће од дужине фајла." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Не можеш да подесиш да 'cue out' буде мање него 'cue in'." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Дужина мора да буде већа од 0 минута" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Дужина мора да буде у облику \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL мора да буде у облику \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL мора да буде 512 знакова или мање" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Не постоји MIME тип за пренос." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Име преноса не може да да буде празно" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Нисмо могли анализирати XSPF списак песама" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Нисмо могли анализирати PLS списак песама" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Нисмо могли анализирати M3U списак песама" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Неважећи пренос - Чини се да је ово преузимање." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Непознати преносни тип: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Реемитовање од %s од %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Одабери Државу" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Не можеш да преместиш ставке из повезаних емисија" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Застарео се прегледан распоред! (неважећи распоред)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Застарео се прегледан распоред! (пример неусклађеност)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Застарео се прегледан распоред!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Не смеш да закажеш распоредну емисију %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Не можеш да додаш датотеке за снимљене емисије." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Емисија %s је готова и не могу да буде заказана." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Раније је %s емисија већ била ажурирана!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Изабрани Фајл не постоји!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s је већ надзиран." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s садржава угнежђене надзиране директоријуме: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s се налази унутар у постојећи надзирани директоријуми: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s није ваљан директоријум." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s не постоји у листи надзираних локације." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Лозинке се не подударају" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5353,7 +3907,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5361,7 +3915,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5370,20 +3924,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "'Cue in' и 'cue out' су нуле." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Не можеш да подесиш да 'cue out' буде веће од дужине фајла." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Не можеш да подесиш да 'cue in' буде веће него 'cue out'." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Не можеш да подесиш да 'cue out' буде мање него 'cue in'." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s је већ надзиран." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s садржава угнежђене надзиране директоријуме: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s се налази унутар у постојећи надзирани директоријуми: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s није ваљан директоријум." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s је већ постављена као мапа за складиштење или је између пописа праћених фолдера." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s не постоји у листи надзираних локације." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Одабери Државу" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Не можеш да преместиш ставке из повезаних емисија" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Застарео се прегледан распоред! (неважећи распоред)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Застарео се прегледан распоред! (пример неусклађеност)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Застарео се прегледан распоред!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Не смеш да закажеш распоредну емисију %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Не можеш да додаш датотеке за снимљене емисије." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Емисија %s је готова и не могу да буде заказана." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Раније је %s емисија већ била ажурирана!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Изабрани Фајл не постоји!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Емисије могу да имају највећу дужину 24 сата." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5391,138 +4063,223 @@ msgstr "" "Не може да се закаже преклапајуће емисије.\n" "Напомена: Промена величине понављане емисије утиче на све њене понављање." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Реемитовање од %s од %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Дужина мора да буде већа од 0 минута" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Дужина мора да буде у облику \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL мора да буде у облику \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL мора да буде 512 знакова или мање" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Не постоји MIME тип за пренос." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Име преноса не може да да буде празно" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Нисмо могли анализирати XSPF списак песама" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Нисмо могли анализирати PLS списак песама" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Нисмо могли анализирати M3U списак песама" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Неважећи пренос - Чини се да је ово преузимање." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Непознати преносни тип: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Снимљена датотека не постоји" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Метаподаци снимљеног фајла" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Календар" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Корисници" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Уређивање Програма" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Преноси" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Историјски Шаблони" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Дозвола одбијена" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Слушатељска Статистика" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Не можеш повући и испустити понављајуће емисије" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Не можеш преместити догађане емисије" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Не можеш преместити емисију у прошлости" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Емисија је избрисана јер је снимљена емисија не постоји!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Мораш причекати 1 сат за ре-емитовање." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Песма" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Пуштена" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Почетак Коришћења" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Упутство" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Жељена дужина блока неће да буде постигнут јер Airtime не могу да пронађе довољно јединствене песме које одговарају твојим критеријумима. Омогући ову опцију ако желиш да допустиш да неке песме могу да се више пута понављају." +#~ msgid " to " +#~ msgstr "до" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Ако је иза Airtime-а рутер или заштитни зид, можда мораш да конфигуришеш поље порта прослеђивање и ово информационо поље ће да буде нетачан. У том случају мораћеш ручно да ажурираш ово поље, да би показао тачноhost/port/mount да се могу да повеже твоји диск-џокеји. Допуштени опсег је између 1024 и 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Како би се промовисао своју станицу, 'Пошаљи повратне информације' мора да буде омогућена)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "За више детаља, прочитај %sУпутству за употребу%s" +#~ msgid "(Required)" +#~ msgstr "(Обавезно)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Менаџер програма могу да уради следеће:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Твоја радијска станица веб странице)" -#~ msgid "Support setting updated." -#~ msgstr "Подршка подешавања је ажурирана." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(служи само за проверу, неће да буде објављена)" -#~ msgid "Support Feedback" -#~ msgstr "Повратне Информације" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Упиши знаке које видиш на слици у наставку." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Телефон:" +#~ msgid "About" +#~ msgstr "О пројекту" -#~ msgid "Station Web Site:" -#~ msgstr "Веб Страница:" +#~ msgid "Add New Field" +#~ msgstr "Додај Ново Поље" -#~ msgid "Country:" -#~ msgstr "Држава:" +#~ msgid "Add more elements" +#~ msgstr "Додај више елемената" -#~ msgid "City:" -#~ msgstr "Град:" +#~ msgid "Add this show" +#~ msgstr "Додај ову емисију" -#~ msgid "Station Description:" -#~ msgstr "Опис:" +#~ msgid "Additional Options" +#~ msgstr "Додатне Опције" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Мораш да пристанеш на правила о приватности." - -#~ msgid "Default License:" -#~ msgstr "Задата Дозвола:" +#~ msgid "Advanced Search Options" +#~ msgstr "Напредне Опције Претраживања" #~ msgid "All rights are reserved" #~ msgstr "Сва права задржана" -#~ msgid "The work is in the public domain" -#~ msgstr "Рад је у јавном домену" +#~ msgid "Audio Track" +#~ msgstr "Звучни Запис" + +#~ msgid "Choose Days:" +#~ msgstr "Одабери Дане:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Одабери Емисијску Степену" + +#~ msgid "Choose folder" +#~ msgstr "Одабери фолдер" + +#~ msgid "City:" +#~ msgstr "Град:" + +#~ msgid "Clear" +#~ msgstr "Очисти" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Садржај у повезаним емисијама мора да буде заказан пре или после било које емисије" + +#~ msgid "Country:" +#~ msgstr "Држава:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Стварање Шаблона за Датотечни Сажеци" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Стварање Листу Шаблона" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Именовање" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Именовање Некомерцијално" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Именовање Без Изведених Дела" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Дели Под Истим Условима" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Именовање Некомерцијално" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Именовање Некомерцијално Без Изведених Дела" @@ -5530,38 +4287,370 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Именовање Некомерцијално Дијели Под Истим Условима" -#~ msgid "Register Airtime" -#~ msgstr "Airtime Регистар" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Дели Под Истим Условима" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(служи само за проверу, неће да буде објављена)" +#~ msgid "Cue In: " +#~ msgstr "Cue In: " -#~ msgid "Show me what I am sending " -#~ msgstr "Покажи ми шта шаљем" +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " -#~ msgid "Terms and Conditions" -#~ msgstr "Услови и Одредбе" +#~ msgid "Current Import Folder:" +#~ msgstr "Актуална Увозна Мапа:" -#~ msgid "files meet the criteria" -#~ msgstr "датотеке задовољавају критеријуме" +#~ msgid "Cursor" +#~ msgstr "Показивач" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Како би се промовисао своју станицу, 'Пошаљи повратне информације' мора да буде омогућена)." +#~ msgid "Default Length:" +#~ msgstr "Задата Дужина:" -#~ msgid "Your trial expires in" -#~ msgstr "Ваш налог истиче у" +#~ msgid "Default License:" +#~ msgstr "Задата Дозвола:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ова верзија ускоро ће да буде застарео." +#~ msgid "Disk Space" +#~ msgstr "Дисковни Простор" -#~ msgid "This version is no longer supported." -#~ msgstr "Ова верзија више није подржана." +#~ msgid "Dynamic Smart Block" +#~ msgstr "Динамички Паметан Блок" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Динамички Паметан Блок Критеријуми:" + +#~ msgid "Empty playlist content" +#~ msgstr "Празан садржај списак песама" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Проширење Динамичког Блока" + +#~ msgid "Expand Static Block" +#~ msgstr "Проширење Статичког Bloка" + +#~ msgid "Fade in: " +#~ msgstr "Одтамњење:" + +#~ msgid "Fade out: " +#~ msgstr "Затамњење:" + +#~ msgid "File Path:" +#~ msgstr "Стажа Датотека:" + +#~ msgid "File Summary" +#~ msgstr "Датотечни Извештај" + +#~ msgid "File Summary Templates" +#~ msgstr "Шаблони за Датотечни Сажеци" + +#~ msgid "File import in progress..." +#~ msgstr "Увоз датотеке је у току..." + +#~ msgid "Filter History" +#~ msgstr "Филтрирај Историје" + +#~ msgid "Find" +#~ msgstr "Пронађи" + +#~ msgid "Find Shows" +#~ msgstr "Пронађи Емисије" + +#~ msgid "First Name" +#~ msgstr "Име" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "За детаљну помоћ, прочитај %sупутство за коришћење%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "За више детаља, прочитај %sУпутству за употребу%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Ако је иза Airtime-а рутер или заштитни зид, можда мораш да конфигуришеш поље порта прослеђивање и ово информационо поље ће да буде нетачан. У том случају мораћеш ручно да ажурираш ово поље, да би показао тачноhost/port/mount да се могу да повеже твоји диск-џокеји. Допуштени опсег је између 1024 и 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Број:" + +#~ msgid "Last Name" +#~ msgstr "Презиме" + +#~ msgid "Length:" +#~ msgstr "Дужина:" + +#~ msgid "Limit to " +#~ msgstr "Ограничено за" + +#~ msgid "Listen" +#~ msgstr "Слушај" + +#~ msgid "Live Stream Input" +#~ msgstr "Улаз Уживног Преноса" + +#~ msgid "Live stream" +#~ msgstr "Пренос уживо" + +#~ msgid "Log Sheet" +#~ msgstr "Списак Пријава" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Шаблони Списак Пријаве" + +#~ msgid "Logout" +#~ msgstr "Одјава" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Изгледа страница коју си тражио не постоји!" + +#~ msgid "Manage Users" +#~ msgstr "Управљање Кориснике" + +#~ msgid "Master Source" +#~ msgstr "Мајсторски Извор" + +#~ msgid "New File Summary Template" +#~ msgstr "Нови Шаблон за Датотечни Сажеци" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Нови Листу шаблона" + +#~ msgid "New User" +#~ msgstr "Нови Корисник" + +#~ msgid "New password" +#~ msgstr "Нова лозинка" + +#~ msgid "Next:" +#~ msgstr "Следећа:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Нема Шаблона за Датотечни Сажеци" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Нема Листу Шаблона" + +#~ msgid "No open playlist" +#~ msgstr "Нема отворених списак песама" + +#~ msgid "No webstream" +#~ msgstr "Нема преноса" + +#~ msgid "OK" +#~ msgstr "ОК" + +#~ msgid "ON AIR" +#~ msgstr "ПРЕНОС" + +#~ msgid "Original Length:" +#~ msgstr "Оригинална Дужина:" + +#~ msgid "Page not found!" +#~ msgstr "Страница није пронађена!" + +#~ msgid "Phone:" +#~ msgstr "Телефон:" + +#~ msgid "Play" +#~ msgstr "Покрени" + +#~ msgid "Playlist Contents: " +#~ msgstr "Садржаји Списак Песама:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Крижно утишавање списак песама" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Унеси и потврди своју нову лозинку у поља доле." #~ msgid "Please upgrade to " #~ msgstr "Молимо надогради на" +#~ msgid "Previous:" +#~ msgstr "Претходна:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Менаџер програма могу да уради следеће:" + +#~ msgid "Register Airtime" +#~ msgstr "Airtime Регистар" + +#~ msgid "Remove watched directory" +#~ msgstr "Уклони надзорану директоријуму" + +#~ msgid "Repeat Days:" +#~ msgstr "Поновљени Дани:" + +#~ msgid "Sample Rate:" +#~ msgstr "Узорак Стопа:" + +#~ msgid "Save playlist" +#~ msgstr "Сачувај списак песама" + +#~ msgid "Select stream:" +#~ msgstr "Преноси:" + +#~ msgid "Set" +#~ msgstr "Подеси" + +#~ msgid "Set Cue In" +#~ msgstr "Подеси Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Подеси Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Подеси Подразумевано Шаблону" + +#~ msgid "Share" +#~ msgstr "Подели" + +#~ msgid "Show Source" +#~ msgstr "Emisijski Izvor" + +#~ msgid "Show Summary" +#~ msgstr "Програмски Извештај" + +#~ msgid "Show Waveform" +#~ msgstr "Емисијски звучни таласни облик" + +#~ msgid "Show me what I am sending " +#~ msgstr "Покажи ми шта шаљем" + +#~ msgid "Shuffle playlist" +#~ msgstr "Случајни избор списак песама" + +#~ msgid "Source Streams" +#~ msgstr "Преносни Извори" + +#~ msgid "Static Smart Block" +#~ msgstr "Статички Паметан Блок" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Статички Паметан Блок Садржаји:" + +#~ msgid "Station Description:" +#~ msgstr "Опис:" + +#~ msgid "Station Web Site:" +#~ msgstr "Веб Страница:" + +#~ msgid "Stop" +#~ msgstr "Стани" + +#~ msgid "Stream " +#~ msgstr "Пренос" + +#~ msgid "Stream Settings" +#~ msgstr "Преносна Подешавања" + +#~ msgid "Stream URL:" +#~ msgstr "URL Преноса:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Преноса:" + +#~ msgid "Style" +#~ msgstr "Стил" + +#~ msgid "Support Feedback" +#~ msgstr "Повратне Информације" + +#~ msgid "Support setting updated." +#~ msgstr "Подршка подешавања је ажурирана." + +#~ msgid "Terms and Conditions" +#~ msgstr "Услови и Одредбе" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Жељена дужина блока неће да буде постигнут јер Airtime не могу да пронађе довољно јединствене песме које одговарају твојим критеријумима. Омогући ову опцију ако желиш да допустиш да неке песме могу да се више пута понављају." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Следеће информације ће да буде приказане слушаоцима у медијском плејерима:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Рад је у јавном домену" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ова верзија више није подржана." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ова верзија ускоро ће да буде застарео." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Медија је потребна за репродукцију, и мораш да ажурираш свој претраживач на новију верзију, или да ажурираш свој %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Песма:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Упиши знаке које видиш на слици у наставку." + +#~ msgid "Update Required" +#~ msgstr "Потребно Ажурирање" + +#~ msgid "Update show" +#~ msgstr "Ажурирање емисије" + +#~ msgid "User Type" +#~ msgstr "Врста Корисника" + +#~ msgid "Web Stream" +#~ msgstr "Пренос" + +#~ msgid "What" +#~ msgstr "Шта" + +#~ msgid "When" +#~ msgstr "Када" + +#~ msgid "Who" +#~ msgstr "Ко" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Не пратиш ниједне медијске мапе." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Мораш да пристанеш на правила о приватности." + +#~ msgid "Your trial expires in" +#~ msgstr "Ваш налог истиче у" + +#~ msgid "and" +#~ msgstr "и" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "датотеке задовољавају критеријуме" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "макс гласноћа" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "следећа" + +#~ msgid "or" +#~ msgstr "или" + +#~ msgid "pause" +#~ msgstr "пауза" + +#~ msgid "play" +#~ msgstr "покрени" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "молимо стави у време у секундама '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Садржај у повезаним емисијама мора да буде заказан пре или после било које емисије" +#~ msgid "previous" +#~ msgstr "претходна" + +#~ msgid "stop" +#~ msgstr "заустави" + +#~ msgid "unmute" +#~ msgstr "укључи" diff --git a/legacy/locale/sr_RS@latin/LC_MESSAGES/libretime.po b/legacy/locale/sr_RS@latin/LC_MESSAGES/libretime.po index b3b277cfd..e8f7c0609 100644 --- a/legacy/locale/sr_RS@latin/LC_MESSAGES/libretime.po +++ b/legacy/locale/sr_RS@latin/LC_MESSAGES/libretime.po @@ -1,2495 +1,1603 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Sourcefabric , 2013 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Serbian (Latin) (Serbia) (http://www.transifex.com/sourcefabric/airtime/language/sr_RS@latin/)\n" +"Language-Team: Serbian (Latin) (Serbia)\n" "Language: sr_RS@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Prijava" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Godina %s mora da bude u rasponu između 1753 - 9999" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "Nova lozinka" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "Unesi i potvrdi svoju novu lozinku u polja dole." - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "Istorija Puštenih Pesama" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "Spisak Prijava" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "Datotečni Izveštaj" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "Programski Izveštaj" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "Upravljanje Medijske Mape" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "Prenosna Podešavanja" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Sačuvaj" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "dB" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "Prenos" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(Obavezno)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "Dodatne Opcije" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "Sledeće informacije će da bude prikazane slušaocima u medijskom plejerima:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(Tvoja radijska stanica veb stranice)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "URL Prenosa:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "ili" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "i" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "do" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "Odaberi Emisijsku Stepenu" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Nema Programa" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "Pronađi" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "Odaberi folder" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "Podesi" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "Aktualna Uvozna Mapa:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Dodaj" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s nije ispravan datum" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "Ukloni nadzoranu direktorijumu" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "Ne pratiš nijedne medijske mape." - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "Odaberi Dane:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Ukloni" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "Ponovljeni Dani:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "Pronađi Emisije" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "Filtriraj Istorije" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "Emisijski Izvor" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "Majstorski Izvor" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s nije ispravan datum" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "Upravljanje Korisnike" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "Novi Korisnik" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "id" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Korisničko ime" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "Ime" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Prezime" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "Vrsta Korisnika" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "Proširenje Statičkog Bloka" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "Proširenje Dinamičkog Bloka" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "Naziv:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Opis:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Trajanje:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "Slučajni izbor spisak pesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Mešanje" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "Križno utišavanje spisak pesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "Prazan sadržaj spisak pesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "Očisti" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "Zatamnjenje:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "Odustani" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "Sačuvaj spisak pesama" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "Nema otvorenih spisak pesama" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "Emisijski zvučni talasni oblik" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(ss.t)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "Odtamnjenje:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "Cue In: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(hh:mm:ss.t)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "Cue Out: " - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "Originalna Dužina:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "u upotrebi" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Sve" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "Napredne Opcije Pretraživanja" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Opis" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "URL Prenosa:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "Zadata Dužina:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "Nema prenosa" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Zatvori" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "Naziv" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Tvorac" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Jezik" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Autorsko pravo" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "Uvoz datoteke je u toku..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Naziv:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Tvorac:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Album:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Pesma:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "Dužina:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "Uzorak Stopa:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Brzina u Bitovima:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Raspoloženje:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Žanr:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Godina:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Nalepnica:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Kompozitor:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Dirigent:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Autorsko pravo:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "Isrc Broj:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Veb stranica:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Jezik:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "Staža Datoteka:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "Prenos" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "Dinamički Pametan Blok" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "Statički Pametan Blok" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "Zvučni Zapis" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "Sadržaji Spisak Pesama:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "Statički Pametan Blok Sadržaji:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "Dinamički Pametan Blok Kriterijumi:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "Ograničeno za" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "Stanje" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "Diskovni Prostor" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "prethodna" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "Kalendar" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "pokreni" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "pauza" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "sledeća" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "zaustavi" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "mute" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "uključi" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "maks glasnoća" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "Potrebno Ažuriranje" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "Medija je potrebna za reprodukciju, i moraš da ažuriraš svoj pretraživač na noviju verziju, ili da ažuriraš svoj %sFlash plugin%s." - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "Stvaranje Šablona za Datotečni Sažeci" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "Stvaranje Listu Šablona" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "Dodaj više elemenata" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "Dodaj Novo Polje" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "Podesi Podrazumevano Šablonu" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "Šabloni Spisak Prijave" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "Novi Listu šablona" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "Nema Listu Šablona" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "Postavi Podrazumevano" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "Šabloni za Datotečni Sažeci" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "Novi Šablon za Datotečni Sažeci" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "Nema Šablona za Datotečni Sažeci" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "O projektu" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "Za detaljnu pomoć, pročitaj %suputstvo za korišćenje%s." - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Prenos uživo" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Podeli" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "Prenosi:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "Dodaj ovu emisiju" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "Ažuriranje emisije" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "Šta" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "Kada" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "Ulaz Uživnog Prenosa" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "Ko" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Stil" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "Početak" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Naziv" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Album" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Dužina" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Žanr" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Nalepnica" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "Prethodna:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "Sledeća:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "Prenosni Izvori" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "PRENOS" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "Slušaj" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Odjava" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "Liste pesama" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "Smart Block-ovi" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "Korisnici" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "Prenosi" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "Stanje" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "Istorija Puštenih Pesama" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "Istorijski Šabloni" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "Slušateljska Statistika" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "Pomoć" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "Početak Korišćenja" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "Uputstvo" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "Stranica nije pronađena!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "Izgleda stranica koju si tražio ne postoji!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Uređaj" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Pokreni" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Stani" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Podesi Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Podesi Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Pokazivač" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Odtamnjenje" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Zatamnjenje" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "Nemaš dopuštenje da isključiš izvor." - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "Nema spojenog izvora na ovaj ulaz." - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "Nemaš dozvolu za promenu izvora." - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen." - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo." - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Neimenovani Prenos" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Prenos je sačuvan." - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Nevažeći vrednosti obrasca." - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Korisnik je uspešno dodat!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Korisnik je uspešno ažuriran!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Podešavanja su uspešno ažurirane!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Pregled" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "Odaberi pokazivač" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "Ukloni pokazivač" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Obriši" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "emisija ne postoji" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "Podešavanja su ažurirane." - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "Prenos Podešavanje je Ažurirano." - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "put bi trebao da bude specificiran" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Problem sa Liquidsoap..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s nije pronađen" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "Nešto je pošlo po krivu." - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "Dodaj na Spisak Pesama" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "Dodaj u Smart Block" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "Preuzimanje" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "Udvostručavanje" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "Nema dostupnih akcija" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "Nemaš dopuštenje za brisanje odabrane stavke." - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "Kopiranje od %s" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "Molimo, proveri da li je ispravan/na admin korisnik/lozinka na stranici Sistem->Prenosi." - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "Ne smeš da pristupiš ovog izvora." -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "Ne smeš da pristupite ovog izvora." -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "Neispravan zahtev." -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "Neispravan zahtev" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "Nemaš dopuštenje da isključiš izvor." -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "Nema spojenog izvora na ovaj ulaz." -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "Nemaš dozvolu za promenu izvora." + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "Gledaš stariju verziju %s" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Ne možeš da dodaš pesme za dinamične blokove." +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." +msgid "%s not found" +msgstr "%s nije pronađen" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "Možeš samo pesme da dodaš za pametnog bloka." +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "Nešto je pošlo po krivu." -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "Možeš samo da dodaš pesme, pametne blokova, i prenose kod liste numera." +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Pregled" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "Neimenovani Spisak Pesama" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "Dodaj na Spisak Pesama" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "Neimenovani Smart Block" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "Dodaj u Smart Block" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "Nepoznati Spisak Pesama" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Obriši" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "Preuzimanje" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "Udvostručavanje" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "Nema dostupnih akcija" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "Nemaš dopuštenje za brisanje odabrane stavke." + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "Kopiranje od %s" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "Molimo, proveri da li je ispravan/na admin korisnik/lozinka na stranici Sistem->Prenosi." + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Uređaj" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "Snimanje:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "Majstorski Prenos" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "Prenos Uživo" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "Ništa po rasporedu" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "Sadašnja Emisija:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "Trenutna" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "Ti imaš instaliranu najnoviju verziju" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "Nova verzija je dostupna:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "Dodaj u trenutni spisak pesama" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "Dodaj u trenutni smart block" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "Dodavanje 1 Stavke" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "Dodavanje %s Stavke" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "Možeš da dodaš samo pesme kod pametnih blokova." -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "Možeš samo da dodaš pesme, pametne blokova, i prenose kod liste numera." + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "Molimo odaberi mesto pokazivača na vremenskoj crti." -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Dodaj" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "Uređivanje" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Ukloni" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "Uredi Metapodatke" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "Dodaj u odabranoj emisiji" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "Odaberi" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "Odaberi ovu stranicu" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "Odznači ovu stranicu" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "Odznači sve" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "Jesi li siguran da želiš da izbrišeš odabranu (e) stavu (e)?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "Zakazana" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Naziv" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Tvorac" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Album" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "Prenos Bita" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "BPM" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "Kompozitor" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "Dirigent" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Autorsko pravo" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "Kodirano je po" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Žanr" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Nalepnica" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Jezik" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "Poslednja Izmena" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "Zadnji Put Odigrana" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Dužina" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "Mime" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "Raspoloženje" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "Vlasnik" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "Replay Gain" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "Uzorak Stopa" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "Broj Pesma" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "Dodata" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "Veb stranica" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "Godina" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "Učitavanje..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Sve" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "Datoteke" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "Liste pesama" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "Smart Block-ovi" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "Prenosi" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "Nepoznati tip:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "Jesi li siguran da želiš da obrišeš izabranu stavku?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "Prenos je u toku..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "Preuzimanje podataka sa servera..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "Šifra greške:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "Poruka o grešci:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "Mora da bude pozitivan broj" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "Mora da bude broj" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "Mora da bude u obliku: gggg-mm-dd" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "Mora da bude u obliku: hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "Trenutno je prenos datoteke. %sOdlazak na drugom ekranu će da otkaže proces slanja. %s" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "Otvori Medijskog Graditelja" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "molimo stavi u vreme '00:00:00 (.0)'" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "Tvoj pretraživač ne podržava ovu vrstu audio fajl:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "Dinamički blok nije dostupan za pregled" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "Ograničiti se na:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "Spisak pesama je spremljena" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "Spisak pesama je izmešan" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "Airtime je nesiguran o statusu ove datoteke. To takođe može da se desi kada je datoteka na udaljenom disku ili je datoteka u nekoj direktorijumi, koja se više nije 'praćena odnosno nadzirana'." -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "Broj Slušalaca %s: %s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "Podseti me za 1 nedelju" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "Nikad me više ne podseti" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "Da, pomažem Airtime-u" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "Slika mora da bude jpg, jpeg, png, ili gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "Statički pametni blokovi spremaju kriterijume i odmah generišu blok sadržaja. To ti omogućava da urediš i vidiš ga u biblioteci pre nego što ga dodaš na emisiju." -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "Dinamički pametni blokovi samo kriterijume spremaju. Blok sadržaja će se generiše nakon što ga dodamo na emisiju. Nećeš moći da pregledaš i uređivaš sadržaj u biblioteci." -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "Smart block je izmešan" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "Smart block je generisan i kriterijume su spremne" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "Smart block je sačuvan" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "Obrada..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "Odaberi modifikator" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "sadrži" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "ne sadrži" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "je" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "nije" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "počinje se sa" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "završava se sa" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "je veći od" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "je manji od" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "je u opsegu" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "Generiši" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "Odaberi Mapu za Skladištenje" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "Odaberi Mapu za Praćenje" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2497,2855 +1605,2301 @@ msgstr "" "Jesi li siguran da želiš da promeniš mapu za skladištenje?\n" "To će da ukloni datoteke iz tvoje biblioteke!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "Upravljanje Medijske Mape" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "Jesi li siguran da želiš da ukloniš nadzorsku mapu?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "Ovaj put nije trenutno dostupan." -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "Neke vrste emitovanje zahtevaju dodatnu konfiguraciju. Detalji oko omogućavanja %sAAC+ Podrške%s ili %sOpus Podrške%s su ovde dostupni." -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "Priključen je na serveru" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "Prenos je onemogućen" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "Dobijanje informacija sa servera..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "Ne može da se poveže na serveru" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "Proveri ovu opciju kako bi se omogućilo metapodataka za OGG potoke." -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "Proveri ovu kućicu za automatsko isključenje Majstor/Emisija izvora, nakon prestanka rada izvora." -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "Proveri ovu kućicu za automatsko prebacivanje na Majstor/Emisija izvora, nakon što je spojen izvor." -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "Ako tvoj Icecast server očekuje korisničko ime iz 'izvora', ovo polje može da ostane prazno." -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "Ako tvoj 'live streaming' klijent ne pita za korisničko ime, ovo polje trebalo da bude 'izvor'." -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "Ovo je admin korisničko ime i lozinka za Icecast/SHOUTcast da bi dobio slušateljsku statistiku." -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "Upozorenje: Ne možeš promeniti sadržaj polja, dok se sadašnja emisija ne završava" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "Nema pronađenih rezultata" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "To sledi isti obrazac bezbednosti za emisije: samo dodeljeni korisnici mogu da se poveže na emisiju." -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "Odredi prilagođene autentifikacije koje će da se uvaži samo za ovu emisiju." -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "Emisija u ovom slučaju više ne postoji!" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "Upozorenje: Emisije ne može ponovo da se poveže" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "Povezivanjem svoje ponavljajuće emisije svaka zakazana medijska stava u svakoj ponavljajućim emisijama dobiće isti raspored takođe i u drugim ponavljajućim emisijama" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "Vremenska zona je postavljena po staničnu zonu prema zadatim. Emisije u kalendaru će se da prikaže po tvojim lokalnom vremenu koja je definisana u interfejsa vremenske zone u tvojim korisničkim postavci." -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "Emisija" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "Emisija je prazna" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1m" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5m" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10m" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15m" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30m" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60m" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "Dobijanje podataka sa servera..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "Ova emisija nema zakazanog sadržaja." -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "Ova emisija nije u potpunosti ispunjena sa sadržajem." -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "Januar" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "Februar" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "Mart" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "April" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "Maj" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "Jun" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "Jul" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "Avgust" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "Septembar" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "Oktobar" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "Novembar" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "Decembar" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "Jan" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "Feb" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "Mar" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "Apr" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "Jun" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "Jul" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "Avg" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "Sep" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "Okt" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "Nov" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "Dec" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "Nedelja" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "Ponedeljak" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "Utorak" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "Sreda" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "Četvrtak" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "Petak" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "Subota" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "Ned" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "Pon" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "Uto" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "Sre" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "Čet" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "Pet" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "Sub" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "Emisija duže od predviđenog vremena će da bude odsečen." -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "Otkaži Trenutnog Programa?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "Zaustavljanje snimanje emisije?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "Ok" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "Sadržaj Emisije" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "Ukloniš sve sadržaje?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "Obrišeš li odabranu (e) stavu (e)?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "Početak" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "Završetak" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "Trajanje" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Odtamnjenje" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Zatamnjenje" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "Prazna Emisija" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "Snimanje sa Line In" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "Pregled pesma" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "Ne može da se zakazuje van emisije." -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "Premeštanje 1 Stavka" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "Premeštanje %s Stavke" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Sačuvaj" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "Odustani" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "Uređivač za (Od-/Za-)tamnjivanje" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "Cue Uređivač" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "Talasni oblik funkcije su dostupne u sporednu Web Audio API pregledaču" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "Odaberi sve" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "Ne odaberi ništa" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "Ukloni odabrane zakazane stavke" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "Skoči na trenutnu sviranu pesmu" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "Poništi trenutnu emisiju" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "Otvori biblioteku za dodavanje ili uklanjanje sadržaja" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "Dodaj / Ukloni Sadržaj" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "u upotrebi" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "Disk" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "Pogledaj unutra" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "Otvori" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "Administrator" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "Disk-džokej" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "Voditelj Programa" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "Gost" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "Gosti mogu da uradi sledeće:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "Pregled rasporeda" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "Pregled sadržaj emisije" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "Disk-džokeji mogu da uradi sledeće:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "Upravljanje dodeljen sadržaj emisije" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "Uvoz medijske fajlove" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "Izradi liste pesama, pametne blokove, i prenose" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "Upravljanje svoje bibliotečkog sadržaja" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "Prikaz i upravljanje sadržaj emisije" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "Rasporedne emisije" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "Upravljanje sve sadržaje biblioteka" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "Administratori mogu da uradi sledeće:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "Upravljanje podešavanja" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "Upravljanje korisnike" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "Upravljanje nadziranih datoteke" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "Pošalji povratne informacije" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "Pregled stanja sistema" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "Pristup za istoriju puštenih pesama" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "Pogledaj statistiku slušaoce" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "Pokaži/sakrij kolone" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "Od {from} do {to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "kbps" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "gggg-mm-dd" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "hh:mm:ss.t" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "kHz" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "Ne" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "Po" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "Ut" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "Sr" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "Če" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "Pe" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "Su" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Zatvori" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "Sat" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "Minuta" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "Gotovo" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "Izaberi datoteke" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "Dodaj datoteke i klikni na 'Pokreni Upload' dugme." -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "Dodaj Datoteke" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "Zaustavi Upload" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "Pokreni upload" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "Dodaj datoteke" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "Poslata %d/%d datoteka" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "N/A" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "Povuci datoteke ovde." -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "Greška (oznaku tipa datoteke)." -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "Greška veličine datoteke." -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "Greška broj datoteke." -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "Init greška." -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "HTTP Greška." -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "Bezbednosna greška." -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "Generička greška." -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "IO greška." -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "Fajl: %s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "%d datoteka na čekanju" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "Datoteka: %f, veličina: %s, maks veličina datoteke: %m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "Prenosni URL može da bude u krivu ili ne postoji" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "Greška: Datoteka je prevelika:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "Greška: Nevažeći oznak tipa datoteka:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "Postavi Podrazumevano" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "Stvaranje Unosa" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "Uredi Istorijat Upisa" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Nema Programa" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "%s red%s je kopiran u međumemoriju" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%sIspis pogled%sMolimo, koristi pregledača štampanje funkciju za štampanje ovu tabelu. Kad završiš, pritisni Escape." -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Opis" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "Omogućeno" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "Onemogućeno" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen." + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo." + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "Gledaš stariju verziju %s" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "Ne možeš da dodaš pesme za dinamične blokove." + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "Možeš samo pesme da dodaš za pametnog bloka." + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "Neimenovani Spisak Pesama" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "Neimenovani Smart Block" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "Nepoznati Spisak Pesama" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "Podešavanja su ažurirane." + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "Prenos Podešavanje je Ažurirano." + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "put bi trebao da bude specificiran" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Problem sa Liquidsoap..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Reemitovanje emisija %s od %s na %s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "Odaberi pokazivač" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "Ukloni pokazivač" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "emisija ne postoji" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "Snimljena datoteka ne postoji" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "Metapodaci snimljenog fajla" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "Korisnik je uspešno dodat!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "Korisnik je uspešno ažuriran!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "Podešavanja su uspešno ažurirane!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "Uređivanje Programa" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "Neimenovani Prenos" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "Prenos je sačuvan." -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "Nevažeći vrednosti obrasca." -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "Dozvola odbijena" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Uneseni su nevažeći znakovi" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Dan mora da bude naveden" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "Ne možeš premestiti događane emisije" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Vreme mora da bude navedeno" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "Ne možeš premestiti emisiju u prošlosti" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Ne možeš zakazati preklapajuće emisije" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "Ne možeš premestiti snimljene emisije ranije od 1 sat vremena pre njenih reemitovanja." - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "Moraš pričekati 1 sat za re-emitovanje." - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "Pesma" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Vreme Početka" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Vreme Završetka" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "Puštena" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Odaberi kriterijume" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Brzina u Bitovima (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Uzorak Stopa (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "sati" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "minuti" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "elementi" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinamički" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Statički" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Sadržaj slučajni izbor spisak pesama" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ograničenje ne može da bude prazan ili manji od 0" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ograničenje ne može da bude više od 24 sati" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Vrednost mora da bude ceo broj" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Moraš da izabereš Kriteriju i Modifikaciju" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Dužina' trebala da bude u '00:00:00' obliku" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Vrednost mora da bude numerička" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Vrednost bi trebala da bude manja od 2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Vrednost mora da bude manja od %s znakova" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Vrednost ne može da bude prazna" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC Broj:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Uvozna Mapa:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Mape Pod Nadzorom:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Ne važeći Direktorijum" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Link:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Tip Ponavljanje:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "nedeljno" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "svake 2 nedelje" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "svaka 3 nedelje" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "svaka 4 nedelje" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "mesečno" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Odaberi Dane:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Ponavljanje Po:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "dan u mesecu" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "dan u nedelji" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Datum Završetka:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Nema Kraja?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Datum završetka mora da bude posle datuma početka" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Molimo, odaberi kojeg dana" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Vrednost je potrebna i ne može da bude prazan" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Vremenska Zona:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Ponavljanje?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Ne može da se stvori emisiju u prošlosti" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Datum završetka i vreme ne može da bude u prošlosti" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Ne može da traje < 0m" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "Ne može da traje 00h 00m" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Ne može da traje više od 24h" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Korisničko ime:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Lozinka:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Potvrdi Lozinku:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "Ime:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Prezime:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "E-mail:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Mobilni Telefon:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Tipova Korisnika:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Ime prijave nije jedinstveno." - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "Koristi Prilagođeno potvrdu identiteta:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "Prilagođeno Korisničko Ime" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "Prilagođena Lozinka" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "'Korisničko Ime' polja ne sme da ostane prazno." -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "'Lozinka' polja ne sme da ostane prazno." -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Snimanje sa Line In?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Stanična Vremenska Zona" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Ponovo da emituje?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "dani" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Link:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tip Ponavljanje:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Datum Početka:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "nedeljno" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Uneseni su nevažeći znakovi" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "svake 2 nedelje" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Traži Korisnike:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "svaka 3 nedelje" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Disk-džokeji:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "svaka 4 nedelje" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "mesečno" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Sve Moje Emisije:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Odaberi Dane:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Ponavljanje Po:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "dan u mesecu" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "dan u nedelji" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Datum Završetka:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Nema Kraja?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Datum završetka mora da bude posle datuma početka" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Molimo, odaberi kojeg dana" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "Boja Pozadine:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "Boja Teksta:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Dan mora da bude naveden" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "Naziv:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Vreme mora da bude navedeno" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "Neimenovana Emisija" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Žanr:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Opis:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Trajanje:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Vremenska Zona:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Ponavljanje?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Ne može da se stvori emisiju u prošlosti" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Datum završetka i vreme ne može da bude u prošlosti" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Ne može da traje < 0m" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "Ne može da traje 00h 00m" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Ne može da traje više od 24h" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Ne možeš zakazati preklapajuće emisije" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Traži Korisnike:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "Disk-džokeji:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Korisničko ime:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Lozinka:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Potvrdi Lozinku:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "Ime:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Prezime:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "E-mail:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Mobilni Telefon:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Tipova Korisnika:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Ime prijave nije jedinstveno." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Datum Početka:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Naziv:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Tvorac:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Album:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Godina:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Nalepnica:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Kompozitor:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Dirigent:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Raspoloženje:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Autorsko pravo:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC Broj:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Veb stranica:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Jezik:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Vreme Početka" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Vreme Završetka" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Vremenska Zona Interfejsi:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "Naziv Stanice" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "Logo:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Napomena: Sve veća od 600k600 će da se menjaju." -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "Podrazumevano Trajanje Ukršteno Stišavanje (s):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "Podrazumevano Odtamnjenje (s):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "Podrazumevano Zatamnjenje (s):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Stanična Vremenska Zona" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Prvi Dan u Nedelji" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Snimanje sa Line In?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ponovo da emituje?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Resetuj lozinku" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "Dopušteni su samo brojevi." -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Prijava" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "Lozinka" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "Potvrdi novu lozinku" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "Lozinke koje ste uneli ne podudaraju se." -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Korisničko ime" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Resetuj lozinku" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "dani" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Omogućeno:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Prenos Tipa:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tip Usluge:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanali:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Tačka Montiranja" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Korisnik" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Adminska Lozinka" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server ne može da bude prazan." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port ne može da bude prazan." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Montiranje ne može da bude prazna sa Icecast serverom." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Vremenska Zona Interfejsi:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "Trenutno Izvođena" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne odgovara po obliku datuma '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Sve Moje Emisije:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' je manji od %min% dugačko znakova" +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' je više od %max% dugačko znakova" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Odaberi kriterijume" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nije između '%min%' i '%max%', uključivo" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Brzina u Bitovima (Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Lozinke se ne podudaraju" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Uzorak Stopa (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "sati" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "minuti" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "elementi" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamički" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Statički" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Sadržaj slučajni izbor spisak pesama" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Mešanje" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ograničenje ne može da bude prazan ili manji od 0" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ograničenje ne može da bude više od 24 sati" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Vrednost mora da bude ceo broj" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Moraš da izabereš Kriteriju i Modifikaciju" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Dužina' trebala da bude u '00:00:00' obliku" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Vrednost mora da bude numerička" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Vrednost bi trebala da bude manja od 2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Vrednost mora da bude manja od %s znakova" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Vrednost ne može da bude prazna" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast Vorbis Metapodaci" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "Vidljivi Podaci:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "Autor - Naziv" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "Emisija - Autor - Naziv" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "Naziv stanice - Naziv emisije" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "Off Air Metapodaci" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "Uključi Replay Gain" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "Replay Gain Modifikator" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "Godina %s mora da bude u rasponu između 1753 - 9999" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s nije ispravan datum" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s nije ispravan datum" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Omogućeno:" -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Prenos Tipa:" -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Brzina u Bitovima:" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Tip Usluge:" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanali:" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Server" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "Naziv" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Tačka Montiranja" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Admin Korisnik" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Adminska Lozinka" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Server ne može da bude prazan." -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port ne može da bude prazan." -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Montiranje ne može da bude prazna sa Icecast serverom." -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "Uvozna Mapa:" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "Mape Pod Nadzorom:" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Ne važeći Direktorijum" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Vrednost je potrebna i ne može da bude prazan" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne odgovara po obliku datuma '%format%'" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' je manji od %min% dugačko znakova" -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' je više od %max% dugačko znakova" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nije između '%min%' i '%max%', uključivo" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "'Cue in' i 'cue out' su nule." - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "Ne možeš da podesiš da 'cue in' bude veće nego 'cue out'." - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "Ne možeš da podesiš da 'cue out' bude veće od dužine fajla." - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "Ne možeš da podesiš da 'cue out' bude manje nego 'cue in'." - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "Dužina mora da bude veća od 0 minuta" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "Dužina mora da bude u obliku \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "URL mora da bude u obliku \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "URL mora da bude 512 znakova ili manje" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "Ne postoji MIME tip za prenos." - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "Ime prenosa ne može da da bude prazno" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "Nismo mogli analizirati XSPF spisak pesama" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "Nismo mogli analizirati PLS spisak pesama" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "Nismo mogli analizirati M3U spisak pesama" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "Nevažeći prenos - Čini se da je ovo preuzimanje." - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "Nepoznati prenosni tip: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "Reemitovanje od %s od %s" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "Odaberi Državu" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "Ne možeš da premestiš stavke iz povezanih emisija" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "Zastareo se pregledan raspored! (nevažeći raspored)" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "Zastareo se pregledan raspored! (primer neusklađenost)" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "Zastareo se pregledan raspored!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "Ne smeš da zakažeš rasporednu emisiju %s." - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "Ne možeš da dodaš datoteke za snimljene emisije." - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "Emisija %s je gotova i ne mogu da bude zakazana." - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "Ranije je %s emisija već bila ažurirana!" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "Izabrani Fajl ne postoji!" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s je već nadziran." - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s sadržava ugnežđene nadzirane direktorijume: %s" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s se nalazi unutar u postojeći nadzirani direktorijumi: %s" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s nije valjan direktorijum." - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera." - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "%s ne postoji u listi nadziranih lokacije." - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Lozinke se ne podudaraju" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5353,7 +3907,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5361,7 +3915,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5370,20 +3924,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "'Cue in' i 'cue out' su nule." + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "Ne možeš da podesiš da 'cue out' bude veće od dužine fajla." + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "Ne možeš da podesiš da 'cue in' bude veće nego 'cue out'." + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "Ne možeš da podesiš da 'cue out' bude manje nego 'cue in'." + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s je već nadziran." + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s sadržava ugnežđene nadzirane direktorijume: %s" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s se nalazi unutar u postojeći nadzirani direktorijumi: %s" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s nije valjan direktorijum." + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s je već postavljena kao mapa za skladištenje ili je između popisa praćenih foldera." + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "%s ne postoji u listi nadziranih lokacije." + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "Odaberi Državu" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "Ne možeš da premestiš stavke iz povezanih emisija" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "Zastareo se pregledan raspored! (nevažeći raspored)" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "Zastareo se pregledan raspored! (primer neusklađenost)" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "Zastareo se pregledan raspored!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "Ne smeš da zakažeš rasporednu emisiju %s." + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "Ne možeš da dodaš datoteke za snimljene emisije." + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "Emisija %s je gotova i ne mogu da bude zakazana." + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "Ranije je %s emisija već bila ažurirana!" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "Izabrani Fajl ne postoji!" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "Emisije mogu da imaju najveću dužinu 24 sata." -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5391,138 +4063,223 @@ msgstr "" "Ne može da se zakaže preklapajuće emisije.\n" "Napomena: Promena veličine ponavljane emisije utiče na sve njene ponavljanje." -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "Reemitovanje od %s od %s" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "Dužina mora da bude veća od 0 minuta" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "Dužina mora da bude u obliku \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "URL mora da bude u obliku \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "URL mora da bude 512 znakova ili manje" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "Ne postoji MIME tip za prenos." + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "Ime prenosa ne može da da bude prazno" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "Nismo mogli analizirati XSPF spisak pesama" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "Nismo mogli analizirati PLS spisak pesama" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "Nismo mogli analizirati M3U spisak pesama" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "Nevažeći prenos - Čini se da je ovo preuzimanje." + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "Nepoznati prenosni tip: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "Snimljena datoteka ne postoji" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "Metapodaci snimljenog fajla" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "Kalendar" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "Korisnici" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "Uređivanje Programa" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "Prenosi" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "Istorijski Šabloni" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "Dozvola odbijena" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "Slušateljska Statistika" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "Ne možeš premestiti događane emisije" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "Ne možeš premestiti emisiju u prošlosti" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Ne možeš premestiti snimljene emisije ranije od 1 sat vremena pre njenih reemitovanja." + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moraš pričekati 1 sat za re-emitovanje." + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "Pesma" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "Puštena" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "Početak Korišćenja" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "Uputstvo" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "Željena dužina bloka neće da bude postignut jer Airtime ne mogu da pronađe dovoljno jedinstvene pesme koje odgovaraju tvojim kriterijumima. Omogući ovu opciju ako želiš da dopustiš da neke pesme mogu da se više puta ponavljaju." +#~ msgid " to " +#~ msgstr "do" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "Ako je iza Airtime-a ruter ili zaštitni zid, možda moraš da konfigurišeš polje porta prosleđivanje i ovo informaciono polje će da bude netačan. U tom slučaju moraćeš ručno da ažuriraš ovo polje, da bi pokazao tačnohost/port/mount da se mogu da poveže tvoji disk-džokeji. Dopušteni opseg je između 1024 i 49151." +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(Kako bi se promovisao svoju stanicu, 'Pošalji povratne informacije' mora da bude omogućena)." -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "Za više detalja, pročitaj %sUputstvu za upotrebu%s" +#~ msgid "(Required)" +#~ msgstr "(Obavezno)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "Menadžer programa mogu da uradi sledeće:" +#~ msgid "(Your radio station website)" +#~ msgstr "(Tvoja radijska stanica veb stranice)" -#~ msgid "Support setting updated." -#~ msgstr "Podrška podešavanja je ažurirana." +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(služi samo za proveru, neće da bude objavljena)" -#~ msgid "Support Feedback" -#~ msgstr "Povratne Informacije" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(hh:mm:ss.t)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Upiši znake koje vidiš na slici u nastavku." +#~ msgid "(ss.t)" +#~ msgstr "(ss.t)" -#~ msgid "Phone:" -#~ msgstr "Telefon:" +#~ msgid "About" +#~ msgstr "O projektu" -#~ msgid "Station Web Site:" -#~ msgstr "Veb Stranica:" +#~ msgid "Add New Field" +#~ msgstr "Dodaj Novo Polje" -#~ msgid "Country:" -#~ msgstr "Država:" +#~ msgid "Add more elements" +#~ msgstr "Dodaj više elemenata" -#~ msgid "City:" -#~ msgstr "Grad:" +#~ msgid "Add this show" +#~ msgstr "Dodaj ovu emisiju" -#~ msgid "Station Description:" -#~ msgstr "Opis:" +#~ msgid "Additional Options" +#~ msgstr "Dodatne Opcije" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Moraš da pristaneš na pravila o privatnosti." - -#~ msgid "Default License:" -#~ msgstr "Zadata Dozvola:" +#~ msgid "Advanced Search Options" +#~ msgstr "Napredne Opcije Pretraživanja" #~ msgid "All rights are reserved" #~ msgstr "Sva prava zadržana" -#~ msgid "The work is in the public domain" -#~ msgstr "Rad je u javnom domenu" +#~ msgid "Audio Track" +#~ msgstr "Zvučni Zapis" + +#~ msgid "Choose Days:" +#~ msgstr "Odaberi Dane:" + +#~ msgid "Choose Show Instance" +#~ msgstr "Odaberi Emisijsku Stepenu" + +#~ msgid "Choose folder" +#~ msgstr "Odaberi folder" + +#~ msgid "City:" +#~ msgstr "Grad:" + +#~ msgid "Clear" +#~ msgstr "Očisti" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "Sadržaj u povezanim emisijama mora da bude zakazan pre ili posle bilo koje emisije" + +#~ msgid "Country:" +#~ msgstr "Država:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "Stvaranje Šablona za Datotečni Sažeci" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "Stvaranje Listu Šablona" #~ msgid "Creative Commons Attribution" #~ msgstr "Creative Commons Imenovanje" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "Creative Commons Imenovanje Nekomercijalno" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "Creative Commons Imenovanje Bez Izvedenih Dela" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "Creative Commons Deli Pod Istim Uslovima" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "Creative Commons Imenovanje Nekomercijalno" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Dela" @@ -5530,35 +4287,367 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uslovima" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(služi samo za proveru, neće da bude objavljena)" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "Creative Commons Deli Pod Istim Uslovima" -#~ msgid "Show me what I am sending " -#~ msgstr "Pokaži mi šta šaljem" +#~ msgid "Cue In: " +#~ msgstr "Cue In: " -#~ msgid "Terms and Conditions" -#~ msgstr "Uslovi i Odredbe" +#~ msgid "Cue Out: " +#~ msgstr "Cue Out: " -#~ msgid "files meet the criteria" -#~ msgstr "datoteke zadovoljavaju kriterijume" +#~ msgid "Current Import Folder:" +#~ msgstr "Aktualna Uvozna Mapa:" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(Kako bi se promovisao svoju stanicu, 'Pošalji povratne informacije' mora da bude omogućena)." +#~ msgid "Cursor" +#~ msgstr "Pokazivač" -#~ msgid "Your trial expires in" -#~ msgstr "Vaš nalog ističe u" +#~ msgid "Default Length:" +#~ msgstr "Zadata Dužina:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "Ova verzija uskoro će da bude zastareo." +#~ msgid "Default License:" +#~ msgstr "Zadata Dozvola:" -#~ msgid "This version is no longer supported." -#~ msgstr "Ova verzija više nije podržana." +#~ msgid "Disk Space" +#~ msgstr "Diskovni Prostor" + +#~ msgid "Dynamic Smart Block" +#~ msgstr "Dinamički Pametan Blok" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "Dinamički Pametan Blok Kriterijumi:" + +#~ msgid "Empty playlist content" +#~ msgstr "Prazan sadržaj spisak pesama" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "Proširenje Dinamičkog Bloka" + +#~ msgid "Expand Static Block" +#~ msgstr "Proširenje Statičkog Bloka" + +#~ msgid "Fade in: " +#~ msgstr "Odtamnjenje:" + +#~ msgid "Fade out: " +#~ msgstr "Zatamnjenje:" + +#~ msgid "File Path:" +#~ msgstr "Staža Datoteka:" + +#~ msgid "File Summary" +#~ msgstr "Datotečni Izveštaj" + +#~ msgid "File Summary Templates" +#~ msgstr "Šabloni za Datotečni Sažeci" + +#~ msgid "File import in progress..." +#~ msgstr "Uvoz datoteke je u toku..." + +#~ msgid "Filter History" +#~ msgstr "Filtriraj Istorije" + +#~ msgid "Find" +#~ msgstr "Pronađi" + +#~ msgid "Find Shows" +#~ msgstr "Pronađi Emisije" + +#~ msgid "First Name" +#~ msgstr "Ime" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "Za detaljnu pomoć, pročitaj %suputstvo za korišćenje%s." + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "Za više detalja, pročitaj %sUputstvu za upotrebu%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "Ako je iza Airtime-a ruter ili zaštitni zid, možda moraš da konfigurišeš polje porta prosleđivanje i ovo informaciono polje će da bude netačan. U tom slučaju moraćeš ručno da ažuriraš ovo polje, da bi pokazao tačnohost/port/mount da se mogu da poveže tvoji disk-džokeji. Dopušteni opseg je između 1024 i 49151." + +#~ msgid "Isrc Number:" +#~ msgstr "Isrc Broj:" + +#~ msgid "Last Name" +#~ msgstr "Prezime" + +#~ msgid "Length:" +#~ msgstr "Dužina:" + +#~ msgid "Limit to " +#~ msgstr "Ograničeno za" + +#~ msgid "Listen" +#~ msgstr "Slušaj" + +#~ msgid "Live Stream Input" +#~ msgstr "Ulaz Uživnog Prenosa" + +#~ msgid "Live stream" +#~ msgstr "Prenos uživo" + +#~ msgid "Log Sheet" +#~ msgstr "Spisak Prijava" + +#~ msgid "Log Sheet Templates" +#~ msgstr "Šabloni Spisak Prijave" + +#~ msgid "Logout" +#~ msgstr "Odjava" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "Izgleda stranica koju si tražio ne postoji!" + +#~ msgid "Manage Users" +#~ msgstr "Upravljanje Korisnike" + +#~ msgid "Master Source" +#~ msgstr "Majstorski Izvor" + +#~ msgid "New File Summary Template" +#~ msgstr "Novi Šablon za Datotečni Sažeci" + +#~ msgid "New Log Sheet Template" +#~ msgstr "Novi Listu šablona" + +#~ msgid "New User" +#~ msgstr "Novi Korisnik" + +#~ msgid "New password" +#~ msgstr "Nova lozinka" + +#~ msgid "Next:" +#~ msgstr "Sledeća:" + +#~ msgid "No File Summary Templates" +#~ msgstr "Nema Šablona za Datotečni Sažeci" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "Nema Listu Šablona" + +#~ msgid "No open playlist" +#~ msgstr "Nema otvorenih spisak pesama" + +#~ msgid "No webstream" +#~ msgstr "Nema prenosa" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "ON AIR" +#~ msgstr "PRENOS" + +#~ msgid "Original Length:" +#~ msgstr "Originalna Dužina:" + +#~ msgid "Page not found!" +#~ msgstr "Stranica nije pronađena!" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Pokreni" + +#~ msgid "Playlist Contents: " +#~ msgstr "Sadržaji Spisak Pesama:" + +#~ msgid "Playlist crossfade" +#~ msgstr "Križno utišavanje spisak pesama" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "Unesi i potvrdi svoju novu lozinku u polja dole." #~ msgid "Please upgrade to " #~ msgstr "Molimo nadogradi na" +#~ msgid "Previous:" +#~ msgstr "Prethodna:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "Menadžer programa mogu da uradi sledeće:" + +#~ msgid "Remove watched directory" +#~ msgstr "Ukloni nadzoranu direktorijumu" + +#~ msgid "Repeat Days:" +#~ msgstr "Ponovljeni Dani:" + +#~ msgid "Sample Rate:" +#~ msgstr "Uzorak Stopa:" + +#~ msgid "Save playlist" +#~ msgstr "Sačuvaj spisak pesama" + +#~ msgid "Select stream:" +#~ msgstr "Prenosi:" + +#~ msgid "Set" +#~ msgstr "Podesi" + +#~ msgid "Set Cue In" +#~ msgstr "Podesi Cue In" + +#~ msgid "Set Cue Out" +#~ msgstr "Podesi Cue Out" + +#~ msgid "Set Default Template" +#~ msgstr "Podesi Podrazumevano Šablonu" + +#~ msgid "Share" +#~ msgstr "Podeli" + +#~ msgid "Show Source" +#~ msgstr "Emisijski Izvor" + +#~ msgid "Show Summary" +#~ msgstr "Programski Izveštaj" + +#~ msgid "Show Waveform" +#~ msgstr "Emisijski zvučni talasni oblik" + +#~ msgid "Show me what I am sending " +#~ msgstr "Pokaži mi šta šaljem" + +#~ msgid "Shuffle playlist" +#~ msgstr "Slučajni izbor spisak pesama" + +#~ msgid "Source Streams" +#~ msgstr "Prenosni Izvori" + +#~ msgid "Static Smart Block" +#~ msgstr "Statički Pametan Blok" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "Statički Pametan Blok Sadržaji:" + +#~ msgid "Station Description:" +#~ msgstr "Opis:" + +#~ msgid "Station Web Site:" +#~ msgstr "Veb Stranica:" + +#~ msgid "Stop" +#~ msgstr "Stani" + +#~ msgid "Stream " +#~ msgstr "Prenos" + +#~ msgid "Stream Settings" +#~ msgstr "Prenosna Podešavanja" + +#~ msgid "Stream URL:" +#~ msgstr "URL Prenosa:" + +#~ msgid "Stream URL: " +#~ msgstr "URL Prenosa:" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "Support Feedback" +#~ msgstr "Povratne Informacije" + +#~ msgid "Support setting updated." +#~ msgstr "Podrška podešavanja je ažurirana." + +#~ msgid "Terms and Conditions" +#~ msgstr "Uslovi i Odredbe" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "Željena dužina bloka neće da bude postignut jer Airtime ne mogu da pronađe dovoljno jedinstvene pesme koje odgovaraju tvojim kriterijumima. Omogući ovu opciju ako želiš da dopustiš da neke pesme mogu da se više puta ponavljaju." + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "Sledeće informacije će da bude prikazane slušaocima u medijskom plejerima:" + +#~ msgid "The work is in the public domain" +#~ msgstr "Rad je u javnom domenu" + +#~ msgid "This version is no longer supported." +#~ msgstr "Ova verzija više nije podržana." + +#~ msgid "This version will soon be obsolete." +#~ msgstr "Ova verzija uskoro će da bude zastareo." + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "Medija je potrebna za reprodukciju, i moraš da ažuriraš svoj pretraživač na noviju verziju, ili da ažuriraš svoj %sFlash plugin%s." + +#~ msgid "Track:" +#~ msgstr "Pesma:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Upiši znake koje vidiš na slici u nastavku." + +#~ msgid "Update Required" +#~ msgstr "Potrebno Ažuriranje" + +#~ msgid "Update show" +#~ msgstr "Ažuriranje emisije" + +#~ msgid "User Type" +#~ msgstr "Vrsta Korisnika" + +#~ msgid "Web Stream" +#~ msgstr "Prenos" + +#~ msgid "What" +#~ msgstr "Šta" + +#~ msgid "When" +#~ msgstr "Kada" + +#~ msgid "Who" +#~ msgstr "Ko" + +#~ msgid "You are not watching any media folders." +#~ msgstr "Ne pratiš nijedne medijske mape." + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Moraš da pristaneš na pravila o privatnosti." + +#~ msgid "Your trial expires in" +#~ msgstr "Vaš nalog ističe u" + +#~ msgid "and" +#~ msgstr "i" + +#~ msgid "dB" +#~ msgstr "dB" + +#~ msgid "files meet the criteria" +#~ msgstr "datoteke zadovoljavaju kriterijume" + +#~ msgid "id" +#~ msgstr "id" + +#~ msgid "max volume" +#~ msgstr "maks glasnoća" + +#~ msgid "mute" +#~ msgstr "mute" + +#~ msgid "next" +#~ msgstr "sledeća" + +#~ msgid "or" +#~ msgstr "ili" + +#~ msgid "pause" +#~ msgstr "pauza" + +#~ msgid "play" +#~ msgstr "pokreni" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "molimo stavi u vreme u sekundama '00 (.0)'" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "Sadržaj u povezanim emisijama mora da bude zakazan pre ili posle bilo koje emisije" +#~ msgid "previous" +#~ msgstr "prethodna" + +#~ msgid "stop" +#~ msgstr "zaustavi" + +#~ msgid "unmute" +#~ msgstr "uključi" diff --git a/legacy/locale/template/libretime.po b/legacy/locale/template/libretime.po deleted file mode 100644 index b3396f927..000000000 --- a/legacy/locale/template/libretime.po +++ /dev/null @@ -1,5459 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# Sourcefabric , 2012. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Airtime 2.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" diff --git a/legacy/locale/tr/LC_MESSAGES/libretime.po b/legacy/locale/tr/LC_MESSAGES/libretime.po deleted file mode 100644 index 7f8e3134f..000000000 --- a/legacy/locale/tr/LC_MESSAGES/libretime.po +++ /dev/null @@ -1,5496 +0,0 @@ -# LANGUAGE (xx_XX) translation for Airtime. -# Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. -# -# Translators: -# M. Ömer Gölgeli , 2015 -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" -"PO-Revision-Date: 2015-09-05 08:33+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Turkish (http://www.transifex.com/sourcefabric/airtime/language/tr/)\n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "Giriş yap" - -#: legacy/application/views/scripts/login/index.phtml:7 -#, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" - -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "Kaydet" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "Show Yok" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "Ekle" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 -#, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "Kaldır" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "OK" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 -#, php-format -msgid "Welcome to %s!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" -msgstr "" - -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "Kullanıcı adı" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "İsim" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "Soyisim" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" -msgstr "" - -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" -msgstr[1] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." -msgstr "" - -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "İsim:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "Açıklama:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "Uzunluğu:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "Karıştır" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "İptal" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" -msgstr "" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:96 -#, php-format -msgid "%01.1fGB of %01.1fGB" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "Tümü" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" -msgstr "" - -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" -msgstr "" - -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "Tanım" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "Kapat" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "İsim" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "Oluşturan" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "Dil" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "Telif Hakkı" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 -#, php-format -msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." -msgstr "" - -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "Parça Adı:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "Oluşturan:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "Albüm:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "Parça Numarası:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "Bit Değeri:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "Ruh Hali:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "Tür:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "Yıl:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "Plak Şirketi:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "BPM:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "Besteleyen:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "Orkestra Şefi:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "Telif Hakkı:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC No:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "Websitesi:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "Dil:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "URL" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 -#, php-format -msgid "%s Version" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 -msgid "LibreTime media analyzer service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 -msgid "Check that the libretime-analyzer service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 -msgid " and ensure that it's running with " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 -msgid "If not, try " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 -msgid "LibreTime playout service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 -msgid "Check that the libretime-playout service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 -msgid "LibreTime liquidsoap service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 -msgid "Check that the libretime-liquidsoap service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 -msgid "LibreTime Celery Task service" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 -msgid "Check that the libretime-celery service is installed correctly in " -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." -msgstr "" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" -msgstr "" - -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "önceki" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "sonraki" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "Durdur" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "Canlı yayın" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "Paylaş" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "DJ" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "Stil" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "Parça Adı" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "Albüm" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "Uzunluk" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "Tür" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "Plak Şirketi" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "Oturumu kapat" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 -msgid "Player" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" -msgstr "" - -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 -msgid "Help" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" -msgstr "" - -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "Audio Player" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "Oynat" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "Durdur" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "Cue In" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "Cue In değerini ayarla" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "Cue Out" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "Cue Out değerini ayarla" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "Cursor" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "Fade In" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "Fade Out" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "Ön izleme" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "Sil" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 -msgid "You are not allowed to access this resource." -msgstr "" - -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 -#, php-format -msgid "File does not exist in %s" -msgstr "" - -#: legacy/application/controllers/ApiController.php:971 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: legacy/application/controllers/ApiController.php:981 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" - -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 -msgid "" -"To configure and use the embeddable player you must:

\n" -" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" -" 2. Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 -msgid "" -"To use the embeddable weekly schedule widget you must:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 -msgid "" -"To add the Radio Tab to your Facebook Page, you must first:

\n" -" Enable the Public LibreTime API under Settings -> Preferences" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:163 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "" - -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:28 -msgid "Recording:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:29 -msgid "Master Stream" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:30 -msgid "Live Stream" -msgstr "Canlı yayın" - -#: legacy/application/controllers/LocaleController.php:31 -msgid "Nothing Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:32 -msgid "Current Show:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:33 -msgid "Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:35 -msgid "You are running the latest version" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:36 -msgid "New version available: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:37 -msgid "You have a pre-release version of LibreTime intalled." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:38 -msgid "A patch update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:39 -msgid "A feature update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:40 -msgid "A major update for your LibreTime installation is available." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:41 -msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:43 -msgid "Add to current playlist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:44 -msgid "Add to current smart block" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:45 -msgid "Adding 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:46 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:47 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:51 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:52 -msgid "You haven't added any tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:53 -msgid "You haven't added any playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:54 -msgid "You haven't added any podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:55 -msgid "You haven't added any smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:56 -msgid "You haven't added any webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:57 -msgid "Learn about tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:58 -msgid "Learn about playlists" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:59 -msgid "Learn about podcasts" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:60 -msgid "Learn about smart blocks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:61 -msgid "Learn about webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:62 -msgid "Click 'New' to create one." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:67 -msgid "New" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 -msgid "Edit" -msgstr "Düzenle" - -#: legacy/application/controllers/LocaleController.php:69 -msgid "Add to Schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:70 -msgid "Add to next show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:71 -msgid "Add to current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:72 -msgid "Add after selected items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:76 -msgid "Edit Metadata" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:77 -msgid "Add to selected show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:78 -msgid "Select" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:79 -msgid "Select this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:80 -msgid "Deselect this page" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:81 -msgid "Deselect all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:82 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:83 -msgid "Scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:89 -msgid "Bit Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 -msgid "BPM" -msgstr "BPM" - -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 -msgid "Composer" -msgstr "Besteleyen" - -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 -msgid "Conductor" -msgstr "Orkestra Şefi" - -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 -msgid "Encoded By" -msgstr "Encode eden" - -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 -msgid "ISRC" -msgstr "ISRC" - -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 -msgid "Last Modified" -msgstr "Son Değiştirilme Zamanı" - -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 -msgid "Last Played" -msgstr "Son Oynatma Zamanı" - -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 -msgid "Mime" -msgstr "Mime" - -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 -msgid "Mood" -msgstr "Ruh Hali" - -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 -msgid "Owner" -msgstr "Sahibi" - -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 -msgid "Replay Gain" -msgstr "Replay Gain" - -#: legacy/application/controllers/LocaleController.php:106 -msgid "Sample Rate" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 -msgid "Track Number" -msgstr "Parça Numarası" - -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 -msgid "Uploaded" -msgstr "Yüklenme Tarihi" - -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 -msgid "Website" -msgstr "Website'si" - -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 -msgid "Year" -msgstr "Yıl" - -#: legacy/application/controllers/LocaleController.php:111 -msgid "Loading..." -msgstr "Yükleniyor..." - -#: legacy/application/controllers/LocaleController.php:113 -msgid "Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:116 -msgid "Web Streams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:117 -msgid "Unknown type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:118 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 -msgid "Uploading in progress..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:120 -msgid "Retrieving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:122 -msgid "Import" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:123 -msgid "Imported?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 -msgid "View" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:125 -msgid "Error code: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:126 -msgid "Error msg: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:127 -msgid "Input must be a positive number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:128 -msgid "Input must be a number" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:129 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:130 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:134 -#, php-format -msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:136 -msgid "Open Media Builder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:137 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:138 -msgid "Please enter a valid time in seconds. Eg. 0.5" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:139 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:140 -msgid "Dynamic block is not previewable" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:141 -msgid "Limit to: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:142 -msgid "Playlist saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:143 -msgid "Playlist shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:145 -msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:147 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:149 -msgid "Remind me in 1 week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:150 -msgid "Remind me never" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:151 -msgid "Yes, help Airtime" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:155 -msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:157 -msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:159 -#, php-format -msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:160 -msgid "Smart block shuffled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:161 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:162 -msgid "Smart block saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:163 -msgid "Processing..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 -msgid "Select modifier" -msgstr "Değişken seçin" - -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 -msgid "contains" -msgstr "içersin" - -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 -msgid "does not contain" -msgstr "içermesin" - -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 -msgid "is" -msgstr "eşittir" - -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 -msgid "is not" -msgstr "eşit değildir" - -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 -msgid "starts with" -msgstr "ile başlayan" - -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 -msgid "ends with" -msgstr "ile biten" - -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 -msgid "is greater than" -msgstr "büyüktür" - -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 -msgid "is less than" -msgstr "küçüktür" - -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 -msgid "is in the range" -msgstr "aralıkta" - -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 -msgid "Generate" -msgstr "Oluştur" - -#: legacy/application/controllers/LocaleController.php:177 -msgid "Choose Storage Folder" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:178 -msgid "Choose Folder to Watch" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:180 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:182 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:183 -msgid "This path is currently not accessible." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:185 -#, php-format -msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:186 -msgid "Connected to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:187 -msgid "The stream is disabled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 -msgid "Getting information from the server..." -msgstr "Sunucudan bilgiler getiriliyor..." - -#: legacy/application/controllers/LocaleController.php:189 -msgid "Can not connect to the streaming server" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:191 -#, php-format -msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:192 -#, php-format -msgid "For more details, please read the %s%s Manual%s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:194 -msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:195 -msgid "Check this box to automatically switch off Master/Show source upon source disconnection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:196 -msgid "Check this box to automatically switch on Master/Show source upon source connection." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:197 -msgid "If your Icecast server expects a username of 'source', this field can be left blank." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 -msgid "If your live streaming client does not ask for a username, this field should be 'source'." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:199 -msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:200 -msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:204 -msgid "Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:205 -msgid "No result found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:206 -msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:207 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:209 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:210 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:211 -msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:212 -msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:216 -msgid "Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:217 -msgid "Show is empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:218 -msgid "1m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:219 -msgid "5m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:220 -msgid "10m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:221 -msgid "15m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:222 -msgid "30m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:223 -msgid "60m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:225 -msgid "Retreiving data from the server..." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:226 -msgid "This show has no scheduled content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:227 -msgid "This show is not completely filled with content." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:231 -msgid "January" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:232 -msgid "February" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:233 -msgid "March" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:234 -msgid "April" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 -msgid "May" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:236 -msgid "June" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:237 -msgid "July" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:238 -msgid "August" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:239 -msgid "September" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:240 -msgid "October" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:241 -msgid "November" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:242 -msgid "December" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:243 -msgid "Jan" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:244 -msgid "Feb" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:245 -msgid "Mar" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:246 -msgid "Apr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:248 -msgid "Jun" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:249 -msgid "Jul" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:250 -msgid "Aug" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:251 -msgid "Sep" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:252 -msgid "Oct" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:253 -msgid "Nov" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:254 -msgid "Dec" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:255 -msgid "Today" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:256 -msgid "Day" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:257 -msgid "Week" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:258 -msgid "Month" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 -msgid "Sunday" -msgstr "Pazar" - -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 -msgid "Monday" -msgstr "Pazartesi" - -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 -msgid "Tuesday" -msgstr "Salı" - -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 -msgid "Wednesday" -msgstr "Çarşamba" - -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 -msgid "Thursday" -msgstr "Perşembe" - -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 -msgid "Friday" -msgstr "Cuma" - -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 -msgid "Saturday" -msgstr "Cumartesi" - -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "Paz" - -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "Pzt" - -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "Sal" - -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "Çar" - -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "Per" - -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "Cum" - -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "Cmt" - -#: legacy/application/controllers/LocaleController.php:273 -msgid "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:274 -msgid "Cancel Current Show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 -msgid "Stop recording current show?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:276 -msgid "Ok" -msgstr "OK" - -#: legacy/application/controllers/LocaleController.php:277 -msgid "Contents of Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:280 -msgid "Remove all content?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:282 -msgid "Delete selected item(s)?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:284 -msgid "End" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:285 -msgid "Duration" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:286 -msgid "Filtering out " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:287 -msgid " of " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:288 -msgid " records" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:289 -msgid "There are no shows scheduled during the specified time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:299 -msgid "Show Empty" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:300 -msgid "Recording From Line In" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:301 -msgid "Track preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:305 -msgid "Cannot schedule outside a show." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:306 -msgid "Moving 1 Item" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:307 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:310 -msgid "Fade Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:311 -msgid "Cue Editor" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:312 -msgid "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:315 -msgid "Select all" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:316 -msgid "Select none" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:317 -msgid "Trim overbooked shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:318 -msgid "Remove selected scheduled items" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:319 -msgid "Jump to the current playing track" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:320 -msgid "Jump to Current" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:321 -msgid "Cancel current show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:326 -msgid "Open library to add or remove content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:327 -msgid "Add / Remove Content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:330 -msgid "Disk" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:332 -msgid "Look in" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:334 -msgid "Open" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 -msgid "Admin" -msgstr "Yönetici (Admin)" - -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 -msgid "DJ" -msgstr "DJ" - -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 -msgid "Program Manager" -msgstr "Program Yöneticisi" - -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 -msgid "Guest" -msgstr "Ziyaretçi" - -#: legacy/application/controllers/LocaleController.php:340 -msgid "Guests can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:341 -msgid "View schedule" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:342 -msgid "View show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:343 -msgid "DJs can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:344 -msgid "Manage assigned show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:345 -msgid "Import media files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:346 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:347 -msgid "Manage their own library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:348 -msgid "Program Managers can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:349 -msgid "View and manage show content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:350 -msgid "Schedule shows" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:351 -msgid "Manage all library content" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:352 -msgid "Admins can do the following:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:353 -msgid "Manage preferences" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:354 -msgid "Manage users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:355 -msgid "Manage watched folders" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:356 -msgid "Send support feedback" -msgstr "Destek Geribildirimi gönder" - -#: legacy/application/controllers/LocaleController.php:357 -msgid "View system status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:358 -msgid "Access playout history" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:359 -msgid "View listener stats" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:361 -msgid "Show / hide columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:362 -msgid "Columns" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:364 -msgid "From {from} to {to}" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:365 -msgid "kbps" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:366 -msgid "yyyy-mm-dd" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:367 -msgid "hh:mm:ss.t" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:368 -msgid "kHz" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:371 -msgid "Su" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:372 -msgid "Mo" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:373 -msgid "Tu" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:374 -msgid "We" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:375 -msgid "Th" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:376 -msgid "Fr" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:377 -msgid "Sa" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:380 -msgid "Hour" -msgstr "Cmt" - -#: legacy/application/controllers/LocaleController.php:381 -msgid "Minute" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:382 -msgid "Done" -msgstr "OK" - -#: legacy/application/controllers/LocaleController.php:385 -msgid "Select files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:390 -msgid "Add Files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:391 -msgid "Stop Upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:392 -msgid "Start upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:393 -msgid "Add files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:394 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:395 -msgid "N/A" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:396 -msgid "Drag files here." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:397 -msgid "File extension error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:398 -msgid "File size error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:399 -msgid "File count error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:400 -msgid "Init error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:401 -msgid "HTTP Error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:402 -msgid "Security error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:403 -msgid "Generic error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:404 -msgid "IO error." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:405 -#, php-format -msgid "File: %s" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:407 -#, php-format -msgid "%d files queued" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:408 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:409 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:410 -msgid "Error: File too large: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:411 -msgid "Error: Invalid file extension: " -msgstr "" - -#: legacy/application/controllers/LocaleController.php:414 -msgid "Create Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:415 -msgid "Edit History Record" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:418 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:419 -#, php-format -msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:420 -msgid "New Show" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:421 -msgid "New Log Entry" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:423 -msgid "No data available in table" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:424 -msgid "(filtered from _MAX_ total entries)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:430 -msgid "First" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:431 -msgid "Last" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:433 -msgid "Previous" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:434 -msgid "Search:" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 -msgid "No matching records found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:436 -msgid "Drag tracks here from the library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:437 -msgid "No tracks were played during the selected time period." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:439 -msgid "No matching results found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:443 -msgid "Publication Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:444 -msgid "Import Status" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:445 -msgid "Actions" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:446 -msgid "Delete from Library" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:447 -msgid "Successfully imported" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:449 -msgid "Show _MENU_" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:450 -msgid "Show _MENU_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:451 -msgid "Showing _START_ to _END_ of _TOTAL_ entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:452 -msgid "Showing _START_ to _END_ of _TOTAL_ tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:453 -msgid "Showing _START_ to _END_ of _TOTAL_ track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:454 -msgid "Showing _START_ to _END_ of _TOTAL_ users" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:455 -msgid "Showing 0 to 0 of 0 entries" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:456 -msgid "Showing 0 to 0 of 0 tracks" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:457 -msgid "Showing 0 to 0 of 0 track types" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:458 -msgid "(filtered from _MAX_ total track types)" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:460 -msgid "Are you sure you want to delete this tracktype?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:461 -msgid "No track types were found." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:462 -msgid "No track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:463 -msgid "No matching track types found" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 -msgid "Enabled" -msgstr "Aktif" - -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 -msgid "Disabled" -msgstr "Devre dışı" - -#: legacy/application/controllers/LocaleController.php:466 -msgid "Cancel upload" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:467 -msgid "Type" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:469 -msgid "Podcast settings saved" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:470 -msgid "Are you sure you want to delete this user?" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:471 -msgid "Can't delete yourself!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:472 -msgid "You haven't published any episodes!" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:473 -msgid "You can publish your uploaded content from the 'Tracks' view." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:474 -msgid "Try it now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:475 -msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:476 -msgid "Playlist preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:478 -msgid "Webstream preview" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:479 -msgid "You don't have permission to view the library." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 -msgid "Now" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:481 -msgid "Click 'New' to create one now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:482 -msgid "Click 'Upload' to add some now." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:484 -msgid "Import Date" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:485 -msgid "Add New Podcast" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:486 -msgid "" -"Cannot schedule outside a show.\n" -"Try creating a show first." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:487 -msgid "No files have been uploaded yet." -msgstr "" - -#: legacy/application/controllers/LocaleController.php:493 -msgid "On Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:494 -msgid "Off Air" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:495 -msgid "Offline" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:496 -msgid "Nothing scheduled" -msgstr "" - -#: legacy/application/controllers/LocaleController.php:497 -msgid "Click 'Add' to create one now." -msgstr "" - -#: legacy/application/controllers/ScheduleController.php:384 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" -msgstr "" - -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" -msgstr "" - -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" - -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" - -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "" - -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "" - -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "" - -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "Üst üste binen show'lar olamaz" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "Başlangıç Saati" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "Bitiş Saati" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 -msgid "Add Autoloading Playlist ?" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:25 -msgid "Select Playlist" -msgstr "" - -#: legacy/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "Kriter seçiniz" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "Bit Oranı (Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "Örnekleme Oranı (kHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "saat" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "dakika" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "parça" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "Dinamik" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "Sabit" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "Çalma listesi içeriğini karıştır" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Sınırlama boş veya 0'dan küçük olamaz" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "Sınırlama 24 saati geçemez" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "Değer tamsayı olmalıdır" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "Kriter ve Değişken seçin" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "Uzunluk '00:00:00' türünde olmalıdır" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "Değer rakam cinsinden girilmelidir" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "Değer 2147483648'den küçük olmalıdır" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Değer %s karakter'den az olmalıdır" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "Değer boş bırakılamaz" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC No:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "İçe Aktarım Klasörü" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "İzlenen Klasörler:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Geçerli bir Klasör değil." - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "Birbirine Bağla:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "Tekrar Türü:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "haftalık" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "2 haftada bir" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "3 haftada bir" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "4 haftada bir" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "aylık" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "Günleri Seçin:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "Şuna göre tekrar et:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "Ayın günü" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "Haftanın günü" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "Tarih Bitişi:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "Sonu yok?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Değer gerekli ve boş bırakılamaz" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "Zaman Dilimi:" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "Tekrar Ediyor mu?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "Geçmiş tarihli bir show oluşturamazsınız" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "Bitiş tarihi geçmişte olamaz" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "Uzunluk < 0dk'dan kısa olamaz" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "00s 00dk Uzunluk olamaz" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "Yayın süresi 24 saati geçemez" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "Kullanıcı Adı:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "Şifre:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "Şifre Onayı:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "İsim:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "Soyisim:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "Eposta:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "Cep Telefonu:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "Kullanıcı Tipi:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "Kullanıcı adı eşsiz değil." - -#: legacy/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "%s Kimlik Doğrulamasını Kullan" - -#: legacy/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Özel Kimlik Doğrulama Kullan" - -#: legacy/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Özel Kullanıcı Adı" - -#: legacy/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Özel Şifre" - -#: legacy/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" - -#: legacy/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Kullanıcı adı kısmı boş bırakılamaz." - -#: legacy/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Şifre kısmı boş bırakılamaz." - -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "Radyo Saat Dilimi" - -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" - -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" - -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "Tarih Başlangıcı:" - -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Yanlış karakter girdiniz" - -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Kullanıcıları Ara:" - -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ'ler:" - -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Tüm Show'larım:" - -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Arkaplan Rengi" - -#: legacy/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Metin Rengi:" - -#: legacy/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: legacy/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Günü belirtmelisiniz" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Zamanı belirtmelisiniz" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" - -#: legacy/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "İsimsiz Show" - -#: legacy/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:27 -msgid "Station Name" -msgstr "Radyo Adı" - -#: legacy/application/forms/GeneralPreferences.php:35 -msgid "Station Description" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:44 -msgid "Station Logo:" -msgstr "Radyo Logosu:" - -#: legacy/application/forms/GeneralPreferences.php:45 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:64 -msgid "Default Crossfade Duration (s):" -msgstr "Varsayılan Çarpraz Geçiş Süresi:" - -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 -msgid "Please enter a time in seconds (eg. 0.5)" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:78 -msgid "Default Fade In (s):" -msgstr "Varsayılan Fade In geçişi (s)" - -#: legacy/application/forms/GeneralPreferences.php:92 -msgid "Default Fade Out (s):" -msgstr "Varsayılan Fade Out geçişi (s)" - -#: legacy/application/forms/GeneralPreferences.php:104 -msgid "Track Type Upload Default" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:111 -msgid "Intro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:117 -msgid "Outro Autoloading Playlist" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:123 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:129 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:138 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:144 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:155 -msgid "Public LibreTime API" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:156 -msgid "Required for embeddable schedule widget." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:162 -msgid "" -"Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be embedded in your website." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:174 -msgid "Allowed CORS URLs" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:175 -msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:180 -msgid "Default Language" -msgstr "" - -#: legacy/application/forms/GeneralPreferences.php:194 -msgid "Week Starts On" -msgstr "Hafta Başlangıcı" - -#: legacy/application/forms/GeneralPreferences.php:210 -msgid "Display login button on your Radio Page?" -msgstr "" - -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Line In'den Kaydet?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Tekrar yayınla?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "" - -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Parolayı değiştir" - -#: legacy/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:25 -msgid "Auto Switch On:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:31 -msgid "Switch Transition Fade (s):" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:66 -msgid "Master Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:78 -msgid "Master Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "Sadece rakam girebilirsiniz." - -#: legacy/application/forms/LiveStreamingPreferences.php:89 -msgid "Master Source Mount:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:99 -msgid "Show Source Host:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:108 -msgid "Show Source Port:" -msgstr "" - -#: legacy/application/forms/LiveStreamingPreferences.php:116 -msgid "Show Source Mount:" -msgstr "" - -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 -msgid "Password" -msgstr "Şifre" - -#: legacy/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "Yeni şifreyi onayla" - -#: legacy/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "Onay şifresiyle şifreniz aynı değil." - -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "gün" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Etkin:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Yayın Türü:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Servis Türü:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanallar:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Sunucu" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Bağlama Noktası" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Yönetici Hesabı" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Yönetici Şifresi" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Sunucu değeri boş bırakılamaz." - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port değeri boş bırakılamaz." - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Arayüz Zaman Dilimi" - -#: legacy/application/forms/Player.php:14 -msgid "Now Playing" -msgstr "" - -#: legacy/application/forms/Player.php:25 -msgid "Select Stream:" -msgstr "" - -#: legacy/application/forms/Player.php:28 -msgid "Auto detect the most appropriate stream to use." -msgstr "" - -#: legacy/application/forms/Player.php:29 -msgid "Select a stream:" -msgstr "" - -#: legacy/application/forms/Player.php:41 -msgid " - Mobile friendly" -msgstr "" - -#: legacy/application/forms/Player.php:45 -msgid " - The player does not support Opus streams." -msgstr "" - -#: legacy/application/forms/Player.php:72 -msgid "Copy this code and paste it into your website's HTML to embed the player in your site." -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" - -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" - -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" - -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" - -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" - -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Girdiğiniz şifreler örtüşmüyor." - -#: legacy/application/forms/StreamSetting.php:26 -msgid "Hardware Audio Output:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:35 -msgid "ALSA" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:36 -msgid "AO" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:37 -msgid "OSS" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:38 -msgid "Portaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:39 -msgid "Pulseaudio" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:40 -msgid "Jack" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:46 -msgid "Icecast Vorbis Metadata" -msgstr "Icecast Vorbis Metadata" - -#: legacy/application/forms/StreamSetting.php:56 -msgid "Stream Label:" -msgstr "Yayın Etiketi:" - -#: legacy/application/forms/StreamSetting.php:57 -msgid "Artist - Title" -msgstr "Şarkıcı - Parça Adı" - -#: legacy/application/forms/StreamSetting.php:58 -msgid "Show - Artist - Title" -msgstr "Show - Şarkıcı - Parça Adı" - -#: legacy/application/forms/StreamSetting.php:59 -msgid "Station name - Show name" -msgstr "Radyo adı - Show adı" - -#: legacy/application/forms/StreamSetting.php:65 -msgid "Off Air Metadata" -msgstr "Yayın Dışında Gösterilecek Etiket" - -#: legacy/application/forms/StreamSetting.php:71 -msgid "Enable Replay Gain" -msgstr "ReplayGain'i aktif et" - -#: legacy/application/forms/StreamSetting.php:77 -msgid "Replay Gain Modifier" -msgstr "ReplayGain Değeri" - -#: legacy/application/forms/StreamSetting.php:85 -msgid "Streaming Server:" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 -msgid "Custom / 3rd Party Streaming" -msgstr "" - -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" - -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" - -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" - -#: legacy/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Please click this link to reset your password: " -msgstr "" - -#: legacy/application/models/Auth.php:35 -#, php-format -msgid "" -"\n" -"\n" -"If you have any problems, please contact our support team: %s" -msgstr "" - -#: legacy/application/models/Auth.php:36 -#, php-format -msgid "" -"\n" -"\n" -"Thank you,\n" -"The %s Team" -msgstr "" - -#: legacy/application/models/Auth.php:38 -#, php-format -msgid "%s Password Reset" -msgstr "" - -#: legacy/application/models/Schedule.php:209 -msgid "livestream" -msgstr "" - -#: legacy/application/models/Show.php:222 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: legacy/application/models/Show.php:331 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" -msgstr "" - -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" -msgstr "" - -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" -msgstr "" - -#: legacy/application/configs/navigation.php:64 -msgid "Settings" -msgstr "" - -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "" - -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" -msgstr "" - -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" -msgstr "" - -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "" - -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" -msgstr "" - -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" -msgstr "" - -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 -msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." -msgstr "" - -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin." - -#~ msgid "Phone:" -#~ msgstr "Telefon:" - -#~ msgid "Station Web Site:" -#~ msgstr "Radyo Web Sitesi:" - -#~ msgid "Country:" -#~ msgstr "Ülke:" - -#~ msgid "City:" -#~ msgstr "Şehir:" - -#~ msgid "Station Description:" -#~ msgstr "Radyo Tanımı:" - -#~ msgid "Promote my station on %s" -#~ msgstr "Radyomu %s'da tanıt" - -#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." -#~ msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" - -#~ msgid "You have to agree to privacy policy." -#~ msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." - -#~ msgid "Default License:" -#~ msgstr "Varsayılan Lisans Türü:" - -#~ msgid "All rights are reserved" -#~ msgstr "Tüm Hakları Saklıdır" - -#~ msgid "The work is in the public domain" -#~ msgstr "Eser halka açık olarak kayıtlı" diff --git a/legacy/locale/tr_TR/LC_MESSAGES/libretime.po b/legacy/locale/tr_TR/LC_MESSAGES/libretime.po new file mode 100644 index 000000000..add36f2ab --- /dev/null +++ b/legacy/locale/tr_TR/LC_MESSAGES/libretime.po @@ -0,0 +1,4287 @@ +# Translation for LibreTime. +# Copyright (C) 2012 Sourcefabric +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. +# +# Translators: +# M. Ömer Gölgeli , 2015 +# +msgid "" +msgstr "" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" +"PO-Revision-Date: 2015-09-05 08:33+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Turkish (Turkey)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: application/common/DateHelper.php:216 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "" + +#: application/common/DateHelper.php:219 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "" + +#: application/common/DateHelper.php:243 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "" + +#: application/common/LocaleHelper.php:23 +msgid "English" +msgstr "" + +#: application/common/LocaleHelper.php:24 +msgid "Afar" +msgstr "" + +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" +msgstr "" + +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" +msgstr "" + +#: application/common/LocaleHelper.php:27 +msgid "Amharic" +msgstr "" + +#: application/common/LocaleHelper.php:28 +msgid "Arabic" +msgstr "" + +#: application/common/LocaleHelper.php:29 +msgid "Assamese" +msgstr "" + +#: application/common/LocaleHelper.php:30 +msgid "Aymara" +msgstr "" + +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" +msgstr "" + +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" +msgstr "" + +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" +msgstr "" + +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" +msgstr "" + +#: application/common/LocaleHelper.php:35 +msgid "Bihari" +msgstr "" + +#: application/common/LocaleHelper.php:36 +msgid "Bislama" +msgstr "" + +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" +msgstr "" + +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" +msgstr "" + +#: application/common/LocaleHelper.php:39 +msgid "Breton" +msgstr "" + +#: application/common/LocaleHelper.php:40 +msgid "Catalan" +msgstr "" + +#: application/common/LocaleHelper.php:41 +msgid "Corsican" +msgstr "" + +#: application/common/LocaleHelper.php:42 +msgid "Czech" +msgstr "" + +#: application/common/LocaleHelper.php:43 +msgid "Welsh" +msgstr "" + +#: application/common/LocaleHelper.php:44 +msgid "Danish" +msgstr "" + +#: application/common/LocaleHelper.php:45 +msgid "German" +msgstr "" + +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" + +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "" + +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "" + +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "" + +#: application/common/UsabilityHints.php:92 +#, php-format +msgid "" +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:100 +#, php-format +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." +msgstr "" + +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" +msgstr "" + +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." +msgstr "" + +#: application/configs/config-check.php:175 +msgid "LibreTime media analyzer service" +msgstr "" + +#: application/configs/config-check.php:182 +msgid "Check that the libretime-analyzer service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 +msgid " and ensure that it's running with " +msgstr "" + +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 +msgid "If not, try " +msgstr "" + +#: application/configs/config-check.php:196 +msgid "LibreTime playout service" +msgstr "" + +#: application/configs/config-check.php:203 +msgid "Check that the libretime-playout service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:217 +msgid "LibreTime liquidsoap service" +msgstr "" + +#: application/configs/config-check.php:224 +msgid "Check that the libretime-liquidsoap service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:238 +msgid "LibreTime Celery Task service" +msgstr "" + +#: application/configs/config-check.php:245 +msgid "Check that the libretime-celery service is installed correctly in " +msgstr "" + +#: application/configs/config-check.php:259 +msgid "LibreTime API service" +msgstr "" + +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " +msgstr "" + +#: application/configs/navigation.php:27 +msgid "Radio Page" +msgstr "" + +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "" + +#: application/configs/navigation.php:43 +msgid "Widgets" +msgstr "" + +#: application/configs/navigation.php:52 +msgid "Player" +msgstr "" + +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" +msgstr "" + +#: application/configs/navigation.php:66 +msgid "Settings" +msgstr "" + +#: application/configs/navigation.php:74 +msgid "General" +msgstr "" + +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 +msgid "Help" +msgstr "" + +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" +msgstr "" + +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" +msgstr "" + +#: application/configs/navigation.php:183 +msgid "What's New?" +msgstr "" + +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 +msgid "You are not allowed to access this resource." +msgstr "" + +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 +msgid "You are not allowed to access this resource. " +msgstr "" + +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: application/controllers/ApiController.php:990 +msgid "Bad request. no 'mode' parameter passed." +msgstr "" + +#: application/controllers/ApiController.php:1002 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "" + +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "" + +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "" + +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:26 +msgid "" +"To configure and use the embeddable player you must:

\n" +" 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" +" 2. Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:39 +msgid "" +"To use the embeddable weekly schedule widget you must:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/EmbeddablewidgetsController.php:52 +msgid "" +"To add the Radio Tab to your Facebook Page, you must first:

\n" +" Enable the Public LibreTime API under Settings -> Preferences" +msgstr "" + +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 +#, php-format +msgid "%s Podcast" +msgstr "" + +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" + +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 +#, php-format +msgid "%s not found" +msgstr "" + +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "" + +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "Ön izleme" + +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "" + +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "" + +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "Sil" + +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "" + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "Audio Player" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "" + +#: application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "" + +#: application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "Canlı yayın" + +#: application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "" + +#: application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "" + +#: application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "" + +#: application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "" + +#: application/controllers/LocaleController.php:39 +msgid "You have a pre-release version of LibreTime intalled." +msgstr "" + +#: application/controllers/LocaleController.php:40 +msgid "A patch update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:41 +msgid "A feature update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:42 +msgid "A major update for your LibreTime installation is available." +msgstr "" + +#: application/controllers/LocaleController.php:43 +msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." +msgstr "" + +#: application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "" + +#: application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "" + +#: application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "" + +#: application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "" + +#: application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "" + +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "" + +#: application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "" + +#: application/controllers/LocaleController.php:54 +msgid "You haven't added any tracks" +msgstr "" + +#: application/controllers/LocaleController.php:55 +msgid "You haven't added any playlists" +msgstr "" + +#: application/controllers/LocaleController.php:56 +msgid "You haven't added any podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:57 +msgid "You haven't added any smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:58 +msgid "You haven't added any webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:59 +msgid "Learn about tracks" +msgstr "" + +#: application/controllers/LocaleController.php:60 +msgid "Learn about playlists" +msgstr "" + +#: application/controllers/LocaleController.php:61 +msgid "Learn about podcasts" +msgstr "" + +#: application/controllers/LocaleController.php:62 +msgid "Learn about smart blocks" +msgstr "" + +#: application/controllers/LocaleController.php:63 +msgid "Learn about webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:64 +msgid "Click 'New' to create one." +msgstr "" + +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "Ekle" + +#: application/controllers/LocaleController.php:69 +msgid "New" +msgstr "" + +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 +msgid "Edit" +msgstr "Düzenle" + +#: application/controllers/LocaleController.php:71 +msgid "Add to Schedule" +msgstr "" + +#: application/controllers/LocaleController.php:72 +msgid "Add to next show" +msgstr "" + +#: application/controllers/LocaleController.php:73 +msgid "Add to current show" +msgstr "" + +#: application/controllers/LocaleController.php:74 +msgid "Add after selected items" +msgstr "" + +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "Kaldır" + +#: application/controllers/LocaleController.php:78 +msgid "Edit Metadata" +msgstr "" + +#: application/controllers/LocaleController.php:79 +msgid "Add to selected show" +msgstr "" + +#: application/controllers/LocaleController.php:80 +msgid "Select" +msgstr "" + +#: application/controllers/LocaleController.php:81 +msgid "Select this page" +msgstr "" + +#: application/controllers/LocaleController.php:82 +msgid "Deselect this page" +msgstr "" + +#: application/controllers/LocaleController.php:83 +msgid "Deselect all" +msgstr "" + +#: application/controllers/LocaleController.php:84 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "" + +#: application/controllers/LocaleController.php:85 +msgid "Scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "Parça Adı" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "Oluşturan" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "Albüm" + +#: application/controllers/LocaleController.php:91 +msgid "Bit Rate" +msgstr "" + +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 +msgid "BPM" +msgstr "BPM" + +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 +msgid "Composer" +msgstr "Besteleyen" + +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 +msgid "Conductor" +msgstr "Orkestra Şefi" + +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "Telif Hakkı" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 +msgid "Encoded By" +msgstr "Encode eden" + +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "Tür" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 +msgid "ISRC" +msgstr "ISRC" + +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "Plak Şirketi" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "Dil" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 +msgid "Last Modified" +msgstr "Son Değiştirilme Zamanı" + +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 +msgid "Last Played" +msgstr "Son Oynatma Zamanı" + +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "Uzunluk" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 +msgid "Mime" +msgstr "Mime" + +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 +msgid "Mood" +msgstr "Ruh Hali" + +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 +msgid "Owner" +msgstr "Sahibi" + +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 +msgid "Replay Gain" +msgstr "Replay Gain" + +#: application/controllers/LocaleController.php:108 +msgid "Sample Rate" +msgstr "" + +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 +msgid "Track Number" +msgstr "Parça Numarası" + +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 +msgid "Uploaded" +msgstr "Yüklenme Tarihi" + +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 +msgid "Website" +msgstr "Website'si" + +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 +msgid "Year" +msgstr "Yıl" + +#: application/controllers/LocaleController.php:113 +msgid "Loading..." +msgstr "Yükleniyor..." + +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "Tümü" + +#: application/controllers/LocaleController.php:115 +msgid "Files" +msgstr "" + +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "" + +#: application/controllers/LocaleController.php:118 +msgid "Web Streams" +msgstr "" + +#: application/controllers/LocaleController.php:119 +msgid "Unknown type: " +msgstr "" + +#: application/controllers/LocaleController.php:120 +msgid "Are you sure you want to delete the selected item?" +msgstr "" + +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 +msgid "Uploading in progress..." +msgstr "" + +#: application/controllers/LocaleController.php:122 +msgid "Retrieving data from the server..." +msgstr "" + +#: application/controllers/LocaleController.php:124 +msgid "Import" +msgstr "" + +#: application/controllers/LocaleController.php:125 +msgid "Imported?" +msgstr "" + +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 +msgid "View" +msgstr "" + +#: application/controllers/LocaleController.php:127 +msgid "Error code: " +msgstr "" + +#: application/controllers/LocaleController.php:128 +msgid "Error msg: " +msgstr "" + +#: application/controllers/LocaleController.php:129 +msgid "Input must be a positive number" +msgstr "" + +#: application/controllers/LocaleController.php:130 +msgid "Input must be a number" +msgstr "" + +#: application/controllers/LocaleController.php:131 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "" + +#: application/controllers/LocaleController.php:132 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "" + +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 +#, php-format +msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" +msgstr "" + +#: application/controllers/LocaleController.php:137 +msgid "Open Media Builder" +msgstr "" + +#: application/controllers/LocaleController.php:138 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "" + +#: application/controllers/LocaleController.php:139 +msgid "Please enter a valid time in seconds. Eg. 0.5" +msgstr "" + +#: application/controllers/LocaleController.php:140 +msgid "Your browser does not support playing this file type: " +msgstr "" + +#: application/controllers/LocaleController.php:141 +msgid "Dynamic block is not previewable" +msgstr "" + +#: application/controllers/LocaleController.php:142 +msgid "Limit to: " +msgstr "" + +#: application/controllers/LocaleController.php:143 +msgid "Playlist saved" +msgstr "" + +#: application/controllers/LocaleController.php:144 +msgid "Playlist shuffled" +msgstr "" + +#: application/controllers/LocaleController.php:145 +msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." +msgstr "" + +#: application/controllers/LocaleController.php:147 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "" + +#: application/controllers/LocaleController.php:149 +msgid "Remind me in 1 week" +msgstr "" + +#: application/controllers/LocaleController.php:150 +msgid "Remind me never" +msgstr "" + +#: application/controllers/LocaleController.php:151 +msgid "Yes, help Airtime" +msgstr "" + +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "" + +#: application/controllers/LocaleController.php:154 +msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." +msgstr "" + +#: application/controllers/LocaleController.php:155 +msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." +msgstr "" + +#: application/controllers/LocaleController.php:156 +#, php-format +msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +msgstr "" + +#: application/controllers/LocaleController.php:157 +msgid "Smart block shuffled" +msgstr "" + +#: application/controllers/LocaleController.php:158 +msgid "Smart block generated and criteria saved" +msgstr "" + +#: application/controllers/LocaleController.php:159 +msgid "Smart block saved" +msgstr "" + +#: application/controllers/LocaleController.php:160 +msgid "Processing..." +msgstr "" + +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 +msgid "Select modifier" +msgstr "Değişken seçin" + +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 +msgid "contains" +msgstr "içersin" + +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 +msgid "does not contain" +msgstr "içermesin" + +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 +msgid "is" +msgstr "eşittir" + +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 +msgid "is not" +msgstr "eşit değildir" + +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 +msgid "starts with" +msgstr "ile başlayan" + +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 +msgid "ends with" +msgstr "ile biten" + +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 +msgid "is greater than" +msgstr "büyüktür" + +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 +msgid "is less than" +msgstr "küçüktür" + +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 +msgid "is in the range" +msgstr "aralıkta" + +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 +msgid "Generate" +msgstr "Oluştur" + +#: application/controllers/LocaleController.php:174 +msgid "Choose Storage Folder" +msgstr "" + +#: application/controllers/LocaleController.php:175 +msgid "Choose Folder to Watch" +msgstr "" + +#: application/controllers/LocaleController.php:176 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" + +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "" + +#: application/controllers/LocaleController.php:178 +msgid "Are you sure you want to remove the watched folder?" +msgstr "" + +#: application/controllers/LocaleController.php:179 +msgid "This path is currently not accessible." +msgstr "" + +#: application/controllers/LocaleController.php:181 +#, php-format +msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." +msgstr "" + +#: application/controllers/LocaleController.php:182 +msgid "Connected to the streaming server" +msgstr "" + +#: application/controllers/LocaleController.php:183 +msgid "The stream is disabled" +msgstr "" + +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 +msgid "Getting information from the server..." +msgstr "Sunucudan bilgiler getiriliyor..." + +#: application/controllers/LocaleController.php:185 +msgid "Can not connect to the streaming server" +msgstr "" + +#: application/controllers/LocaleController.php:186 +#, php-format +msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +msgstr "" + +#: application/controllers/LocaleController.php:187 +#, php-format +msgid "For more details, please read the %s%s Manual%s" +msgstr "" + +#: application/controllers/LocaleController.php:188 +msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." +msgstr "" + +#: application/controllers/LocaleController.php:189 +msgid "Check this box to automatically switch off Master/Show source upon source disconnection." +msgstr "" + +#: application/controllers/LocaleController.php:190 +msgid "Check this box to automatically switch on Master/Show source upon source connection." +msgstr "" + +#: application/controllers/LocaleController.php:191 +msgid "If your Icecast server expects a username of 'source', this field can be left blank." +msgstr "" + +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 +msgid "If your live streaming client does not ask for a username, this field should be 'source'." +msgstr "" + +#: application/controllers/LocaleController.php:193 +msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" +msgstr "" + +#: application/controllers/LocaleController.php:194 +msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." +msgstr "" + +#: application/controllers/LocaleController.php:198 +msgid "Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: application/controllers/LocaleController.php:199 +msgid "No result found" +msgstr "" + +#: application/controllers/LocaleController.php:200 +msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." +msgstr "" + +#: application/controllers/LocaleController.php:201 +msgid "Specify custom authentication which will work only for this show." +msgstr "" + +#: application/controllers/LocaleController.php:203 +msgid "The show instance doesn't exist anymore!" +msgstr "" + +#: application/controllers/LocaleController.php:204 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: application/controllers/LocaleController.php:205 +msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" +msgstr "" + +#: application/controllers/LocaleController.php:206 +msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." +msgstr "" + +#: application/controllers/LocaleController.php:210 +msgid "Show" +msgstr "" + +#: application/controllers/LocaleController.php:211 +msgid "Show is empty" +msgstr "" + +#: application/controllers/LocaleController.php:212 +msgid "1m" +msgstr "" + +#: application/controllers/LocaleController.php:213 +msgid "5m" +msgstr "" + +#: application/controllers/LocaleController.php:214 +msgid "10m" +msgstr "" + +#: application/controllers/LocaleController.php:215 +msgid "15m" +msgstr "" + +#: application/controllers/LocaleController.php:216 +msgid "30m" +msgstr "" + +#: application/controllers/LocaleController.php:217 +msgid "60m" +msgstr "" + +#: application/controllers/LocaleController.php:219 +msgid "Retreiving data from the server..." +msgstr "" + +#: application/controllers/LocaleController.php:220 +msgid "This show has no scheduled content." +msgstr "" + +#: application/controllers/LocaleController.php:221 +msgid "This show is not completely filled with content." +msgstr "" + +#: application/controllers/LocaleController.php:225 +msgid "January" +msgstr "" + +#: application/controllers/LocaleController.php:226 +msgid "February" +msgstr "" + +#: application/controllers/LocaleController.php:227 +msgid "March" +msgstr "" + +#: application/controllers/LocaleController.php:228 +msgid "April" +msgstr "" + +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 +msgid "May" +msgstr "" + +#: application/controllers/LocaleController.php:230 +msgid "June" +msgstr "" + +#: application/controllers/LocaleController.php:231 +msgid "July" +msgstr "" + +#: application/controllers/LocaleController.php:232 +msgid "August" +msgstr "" + +#: application/controllers/LocaleController.php:233 +msgid "September" +msgstr "" + +#: application/controllers/LocaleController.php:234 +msgid "October" +msgstr "" + +#: application/controllers/LocaleController.php:235 +msgid "November" +msgstr "" + +#: application/controllers/LocaleController.php:236 +msgid "December" +msgstr "" + +#: application/controllers/LocaleController.php:237 +msgid "Jan" +msgstr "" + +#: application/controllers/LocaleController.php:238 +msgid "Feb" +msgstr "" + +#: application/controllers/LocaleController.php:239 +msgid "Mar" +msgstr "" + +#: application/controllers/LocaleController.php:240 +msgid "Apr" +msgstr "" + +#: application/controllers/LocaleController.php:242 +msgid "Jun" +msgstr "" + +#: application/controllers/LocaleController.php:243 +msgid "Jul" +msgstr "" + +#: application/controllers/LocaleController.php:244 +msgid "Aug" +msgstr "" + +#: application/controllers/LocaleController.php:245 +msgid "Sep" +msgstr "" + +#: application/controllers/LocaleController.php:246 +msgid "Oct" +msgstr "" + +#: application/controllers/LocaleController.php:247 +msgid "Nov" +msgstr "" + +#: application/controllers/LocaleController.php:248 +msgid "Dec" +msgstr "" + +#: application/controllers/LocaleController.php:249 +msgid "Today" +msgstr "" + +#: application/controllers/LocaleController.php:250 +msgid "Day" +msgstr "" + +#: application/controllers/LocaleController.php:251 +msgid "Week" +msgstr "" + +#: application/controllers/LocaleController.php:252 +msgid "Month" +msgstr "" + +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 +msgid "Sunday" +msgstr "Pazar" + +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 +msgid "Monday" +msgstr "Pazartesi" + +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 +msgid "Tuesday" +msgstr "Salı" + +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 +msgid "Wednesday" +msgstr "Çarşamba" + +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 +msgid "Thursday" +msgstr "Perşembe" + +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 +msgid "Friday" +msgstr "Cuma" + +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 +msgid "Saturday" +msgstr "Cumartesi" + +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 +msgid "Sun" +msgstr "Paz" + +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 +msgid "Mon" +msgstr "Pzt" + +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 +msgid "Tue" +msgstr "Sal" + +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 +msgid "Wed" +msgstr "Çar" + +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 +msgid "Thu" +msgstr "Per" + +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 +msgid "Fri" +msgstr "Cum" + +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 +msgid "Sat" +msgstr "Cmt" + +#: application/controllers/LocaleController.php:267 +msgid "Shows longer than their scheduled time will be cut off by a following show." +msgstr "" + +#: application/controllers/LocaleController.php:268 +msgid "Cancel Current Show?" +msgstr "" + +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 +msgid "Stop recording current show?" +msgstr "" + +#: application/controllers/LocaleController.php:270 +msgid "Ok" +msgstr "OK" + +#: application/controllers/LocaleController.php:271 +msgid "Contents of Show" +msgstr "" + +#: application/controllers/LocaleController.php:274 +msgid "Remove all content?" +msgstr "" + +#: application/controllers/LocaleController.php:276 +msgid "Delete selected item(s)?" +msgstr "" + +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "" + +#: application/controllers/LocaleController.php:278 +msgid "End" +msgstr "" + +#: application/controllers/LocaleController.php:279 +msgid "Duration" +msgstr "" + +#: application/controllers/LocaleController.php:280 +msgid "Filtering out " +msgstr "" + +#: application/controllers/LocaleController.php:281 +msgid " of " +msgstr "" + +#: application/controllers/LocaleController.php:282 +msgid " records" +msgstr "" + +#: application/controllers/LocaleController.php:283 +msgid "There are no shows scheduled during the specified time period." +msgstr "" + +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "Cue In" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "Cue Out" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "Fade In" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "Fade Out" + +#: application/controllers/LocaleController.php:293 +msgid "Show Empty" +msgstr "" + +#: application/controllers/LocaleController.php:294 +msgid "Recording From Line In" +msgstr "" + +#: application/controllers/LocaleController.php:295 +msgid "Track preview" +msgstr "" + +#: application/controllers/LocaleController.php:299 +msgid "Cannot schedule outside a show." +msgstr "" + +#: application/controllers/LocaleController.php:300 +msgid "Moving 1 Item" +msgstr "" + +#: application/controllers/LocaleController.php:301 +#, php-format +msgid "Moving %s Items" +msgstr "" + +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "Kaydet" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "İptal" + +#: application/controllers/LocaleController.php:304 +msgid "Fade Editor" +msgstr "" + +#: application/controllers/LocaleController.php:305 +msgid "Cue Editor" +msgstr "" + +#: application/controllers/LocaleController.php:306 +msgid "Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: application/controllers/LocaleController.php:309 +msgid "Select all" +msgstr "" + +#: application/controllers/LocaleController.php:310 +msgid "Select none" +msgstr "" + +#: application/controllers/LocaleController.php:311 +msgid "Trim overbooked shows" +msgstr "" + +#: application/controllers/LocaleController.php:312 +msgid "Remove selected scheduled items" +msgstr "" + +#: application/controllers/LocaleController.php:313 +msgid "Jump to the current playing track" +msgstr "" + +#: application/controllers/LocaleController.php:314 +msgid "Jump to Current" +msgstr "" + +#: application/controllers/LocaleController.php:315 +msgid "Cancel current show" +msgstr "" + +#: application/controllers/LocaleController.php:320 +msgid "Open library to add or remove content" +msgstr "" + +#: application/controllers/LocaleController.php:321 +msgid "Add / Remove Content" +msgstr "" + +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "" + +#: application/controllers/LocaleController.php:324 +msgid "Disk" +msgstr "" + +#: application/controllers/LocaleController.php:326 +msgid "Look in" +msgstr "" + +#: application/controllers/LocaleController.php:328 +msgid "Open" +msgstr "" + +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 +msgid "Admin" +msgstr "Yönetici (Admin)" + +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 +msgid "DJ" +msgstr "DJ" + +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 +msgid "Program Manager" +msgstr "Program Yöneticisi" + +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 +msgid "Guest" +msgstr "Ziyaretçi" + +#: application/controllers/LocaleController.php:334 +msgid "Guests can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:335 +msgid "View schedule" +msgstr "" + +#: application/controllers/LocaleController.php:336 +msgid "View show content" +msgstr "" + +#: application/controllers/LocaleController.php:337 +msgid "DJs can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:338 +msgid "Manage assigned show content" +msgstr "" + +#: application/controllers/LocaleController.php:339 +msgid "Import media files" +msgstr "" + +#: application/controllers/LocaleController.php:340 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "" + +#: application/controllers/LocaleController.php:341 +msgid "Manage their own library content" +msgstr "" + +#: application/controllers/LocaleController.php:342 +msgid "Program Managers can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:343 +msgid "View and manage show content" +msgstr "" + +#: application/controllers/LocaleController.php:344 +msgid "Schedule shows" +msgstr "" + +#: application/controllers/LocaleController.php:345 +msgid "Manage all library content" +msgstr "" + +#: application/controllers/LocaleController.php:346 +msgid "Admins can do the following:" +msgstr "" + +#: application/controllers/LocaleController.php:347 +msgid "Manage preferences" +msgstr "" + +#: application/controllers/LocaleController.php:348 +msgid "Manage users" +msgstr "" + +#: application/controllers/LocaleController.php:349 +msgid "Manage watched folders" +msgstr "" + +#: application/controllers/LocaleController.php:350 +msgid "Send support feedback" +msgstr "Destek Geribildirimi gönder" + +#: application/controllers/LocaleController.php:351 +msgid "View system status" +msgstr "" + +#: application/controllers/LocaleController.php:352 +msgid "Access playout history" +msgstr "" + +#: application/controllers/LocaleController.php:353 +msgid "View listener stats" +msgstr "" + +#: application/controllers/LocaleController.php:355 +msgid "Show / hide columns" +msgstr "" + +#: application/controllers/LocaleController.php:356 +msgid "Columns" +msgstr "" + +#: application/controllers/LocaleController.php:358 +msgid "From {from} to {to}" +msgstr "" + +#: application/controllers/LocaleController.php:359 +msgid "kbps" +msgstr "" + +#: application/controllers/LocaleController.php:360 +msgid "yyyy-mm-dd" +msgstr "" + +#: application/controllers/LocaleController.php:361 +msgid "hh:mm:ss.t" +msgstr "" + +#: application/controllers/LocaleController.php:362 +msgid "kHz" +msgstr "" + +#: application/controllers/LocaleController.php:365 +msgid "Su" +msgstr "" + +#: application/controllers/LocaleController.php:366 +msgid "Mo" +msgstr "" + +#: application/controllers/LocaleController.php:367 +msgid "Tu" +msgstr "" + +#: application/controllers/LocaleController.php:368 +msgid "We" +msgstr "" + +#: application/controllers/LocaleController.php:369 +msgid "Th" +msgstr "" + +#: application/controllers/LocaleController.php:370 +msgid "Fr" +msgstr "" + +#: application/controllers/LocaleController.php:371 +msgid "Sa" +msgstr "" + +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "Kapat" + +#: application/controllers/LocaleController.php:374 +msgid "Hour" +msgstr "Cmt" + +#: application/controllers/LocaleController.php:375 +msgid "Minute" +msgstr "" + +#: application/controllers/LocaleController.php:376 +msgid "Done" +msgstr "OK" + +#: application/controllers/LocaleController.php:379 +msgid "Select files" +msgstr "" + +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 +msgid "Add files to the upload queue and click the start button." +msgstr "" + +#: application/controllers/LocaleController.php:384 +msgid "Add Files" +msgstr "" + +#: application/controllers/LocaleController.php:385 +msgid "Stop Upload" +msgstr "" + +#: application/controllers/LocaleController.php:386 +msgid "Start upload" +msgstr "" + +#: application/controllers/LocaleController.php:387 +msgid "Add files" +msgstr "" + +#: application/controllers/LocaleController.php:388 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "" + +#: application/controllers/LocaleController.php:389 +msgid "N/A" +msgstr "" + +#: application/controllers/LocaleController.php:390 +msgid "Drag files here." +msgstr "" + +#: application/controllers/LocaleController.php:391 +msgid "File extension error." +msgstr "" + +#: application/controllers/LocaleController.php:392 +msgid "File size error." +msgstr "" + +#: application/controllers/LocaleController.php:393 +msgid "File count error." +msgstr "" + +#: application/controllers/LocaleController.php:394 +msgid "Init error." +msgstr "" + +#: application/controllers/LocaleController.php:395 +msgid "HTTP Error." +msgstr "" + +#: application/controllers/LocaleController.php:396 +msgid "Security error." +msgstr "" + +#: application/controllers/LocaleController.php:397 +msgid "Generic error." +msgstr "" + +#: application/controllers/LocaleController.php:398 +msgid "IO error." +msgstr "" + +#: application/controllers/LocaleController.php:399 +#, php-format +msgid "File: %s" +msgstr "" + +#: application/controllers/LocaleController.php:401 +#, php-format +msgid "%d files queued" +msgstr "" + +#: application/controllers/LocaleController.php:402 +msgid "File: %f, size: %s, max file size: %m" +msgstr "" + +#: application/controllers/LocaleController.php:403 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "" + +#: application/controllers/LocaleController.php:404 +msgid "Error: File too large: " +msgstr "" + +#: application/controllers/LocaleController.php:405 +msgid "Error: Invalid file extension: " +msgstr "" + +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "" + +#: application/controllers/LocaleController.php:408 +msgid "Create Entry" +msgstr "" + +#: application/controllers/LocaleController.php:409 +msgid "Edit History Record" +msgstr "" + +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "Show Yok" + +#: application/controllers/LocaleController.php:412 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "" + +#: application/controllers/LocaleController.php:413 +#, php-format +msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." +msgstr "" + +#: application/controllers/LocaleController.php:414 +msgid "New Show" +msgstr "" + +#: application/controllers/LocaleController.php:415 +msgid "New Log Entry" +msgstr "" + +#: application/controllers/LocaleController.php:417 +msgid "No data available in table" +msgstr "" + +#: application/controllers/LocaleController.php:418 +msgid "(filtered from _MAX_ total entries)" +msgstr "" + +#: application/controllers/LocaleController.php:424 +msgid "First" +msgstr "" + +#: application/controllers/LocaleController.php:425 +msgid "Last" +msgstr "" + +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 +msgid "Previous" +msgstr "" + +#: application/controllers/LocaleController.php:428 +msgid "Search:" +msgstr "" + +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 +msgid "No matching records found" +msgstr "" + +#: application/controllers/LocaleController.php:430 +msgid "Drag tracks here from the library" +msgstr "" + +#: application/controllers/LocaleController.php:431 +msgid "No tracks were played during the selected time period." +msgstr "" + +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 +msgid "No matching results found." +msgstr "" + +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "Tanım" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 +msgid "Publication Date" +msgstr "" + +#: application/controllers/LocaleController.php:438 +msgid "Import Status" +msgstr "" + +#: application/controllers/LocaleController.php:439 +msgid "Actions" +msgstr "" + +#: application/controllers/LocaleController.php:440 +msgid "Delete from Library" +msgstr "" + +#: application/controllers/LocaleController.php:441 +msgid "Successfully imported" +msgstr "" + +#: application/controllers/LocaleController.php:443 +msgid "Show _MENU_" +msgstr "" + +#: application/controllers/LocaleController.php:444 +msgid "Show _MENU_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:445 +msgid "Showing _START_ to _END_ of _TOTAL_ entries" +msgstr "" + +#: application/controllers/LocaleController.php:446 +msgid "Showing _START_ to _END_ of _TOTAL_ tracks" +msgstr "" + +#: application/controllers/LocaleController.php:447 +msgid "Showing _START_ to _END_ of _TOTAL_ track types" +msgstr "" + +#: application/controllers/LocaleController.php:448 +msgid "Showing _START_ to _END_ of _TOTAL_ users" +msgstr "" + +#: application/controllers/LocaleController.php:449 +msgid "Showing 0 to 0 of 0 entries" +msgstr "" + +#: application/controllers/LocaleController.php:450 +msgid "Showing 0 to 0 of 0 tracks" +msgstr "" + +#: application/controllers/LocaleController.php:451 +msgid "Showing 0 to 0 of 0 track types" +msgstr "" + +#: application/controllers/LocaleController.php:452 +msgid "(filtered from _MAX_ total track types)" +msgstr "" + +#: application/controllers/LocaleController.php:454 +msgid "Are you sure you want to delete this tracktype?" +msgstr "" + +#: application/controllers/LocaleController.php:455 +msgid "No track types were found." +msgstr "" + +#: application/controllers/LocaleController.php:456 +msgid "No track types found" +msgstr "" + +#: application/controllers/LocaleController.php:457 +msgid "No matching track types found" +msgstr "" + +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 +msgid "Enabled" +msgstr "Aktif" + +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 +msgid "Disabled" +msgstr "Devre dışı" + +#: application/controllers/LocaleController.php:460 +msgid "Cancel upload" +msgstr "" + +#: application/controllers/LocaleController.php:461 +msgid "Type" +msgstr "" + +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 +msgid "Podcast settings saved" +msgstr "" + +#: application/controllers/LocaleController.php:464 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: application/controllers/LocaleController.php:465 +msgid "Can't delete yourself!" +msgstr "" + +#: application/controllers/LocaleController.php:466 +msgid "You haven't published any episodes!" +msgstr "" + +#: application/controllers/LocaleController.php:467 +msgid "You can publish your uploaded content from the 'Tracks' view." +msgstr "" + +#: application/controllers/LocaleController.php:468 +msgid "Try it now" +msgstr "" + +#: application/controllers/LocaleController.php:469 +msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" +msgstr "" + +#: application/controllers/LocaleController.php:470 +msgid "Playlist preview" +msgstr "" + +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 +msgid "Webstream preview" +msgstr "" + +#: application/controllers/LocaleController.php:473 +msgid "You don't have permission to view the library." +msgstr "" + +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 +msgid "Now" +msgstr "" + +#: application/controllers/LocaleController.php:475 +msgid "Click 'New' to create one now." +msgstr "" + +#: application/controllers/LocaleController.php:476 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 +msgid "Import Date" +msgstr "" + +#: application/controllers/LocaleController.php:479 +msgid "Add New Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:480 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: application/controllers/LocaleController.php:481 +msgid "No files have been uploaded yet." +msgstr "" + +#: application/controllers/LocaleController.php:487 +msgid "On Air" +msgstr "" + +#: application/controllers/LocaleController.php:488 +msgid "Off Air" +msgstr "" + +#: application/controllers/LocaleController.php:489 +msgid "Offline" +msgstr "" + +#: application/controllers/LocaleController.php:490 +msgid "Nothing scheduled" +msgstr "" + +#: application/controllers/LocaleController.php:491 +msgid "Click 'Add' to create one now." +msgstr "" + +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "" + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "" + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "" + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "" + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "" + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "" + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "" + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "" + +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" +msgstr "" + +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "" + +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "" + +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "" + +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "" + +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "" + +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "Yanlış karakter girdiniz" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "Günü belirtmelisiniz" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "Zamanı belirtmelisiniz" + +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" + +#: application/forms/AddShowAutoPlaylist.php:18 +msgid "Add Autoloading Playlist ?" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:25 +msgid "Select Playlist" +msgstr "" + +#: application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" + +#: application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "%s Kimlik Doğrulamasını Kullan" + +#: application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Özel Kimlik Doğrulama Kullan" + +#: application/forms/AddShowLiveStream.php:27 +msgid "Custom Username" +msgstr "Özel Kullanıcı Adı" + +#: application/forms/AddShowLiveStream.php:40 +msgid "Custom Password" +msgstr "Özel Şifre" + +#: application/forms/AddShowLiveStream.php:52 +msgid "Host:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:59 +msgid "Port:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:66 +msgid "Mount:" +msgstr "" + +#: application/forms/AddShowLiveStream.php:85 +msgid "Username field cannot be empty." +msgstr "Kullanıcı adı kısmı boş bırakılamaz." + +#: application/forms/AddShowLiveStream.php:90 +msgid "Password field cannot be empty." +msgstr "Şifre kısmı boş bırakılamaz." + +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "Line In'den Kaydet?" + +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "Tekrar yayınla?" + +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "gün" + +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "Birbirine Bağla:" + +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "Tekrar Türü:" + +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "haftalık" + +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "2 haftada bir" + +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "3 haftada bir" + +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "4 haftada bir" + +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "aylık" + +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "Günleri Seçin:" + +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "Şuna göre tekrar et:" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "Ayın günü" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "Haftanın günü" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "Tarih Bitişi:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "Sonu yok?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz" + +#: application/forms/AddShowStyle.php:11 +msgid "Background Colour:" +msgstr "Arkaplan Rengi" + +#: application/forms/AddShowStyle.php:30 +msgid "Text Colour:" +msgstr "Metin Rengi:" + +#: application/forms/AddShowStyle.php:48 +msgid "Current Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:71 +msgid "Show Logo:" +msgstr "" + +#: application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "İsim:" + +#: application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "İsimsiz Show" + +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "URL" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "Tür:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "Açıklama:" + +#: application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" + +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "Uzunluğu:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "Zaman Dilimi:" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "Tekrar Ediyor mu?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "Geçmiş tarihli bir show oluşturamazsınız" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "Bitiş tarihi geçmişte olamaz" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "Uzunluk < 0dk'dan kısa olamaz" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "00s 00dk Uzunluk olamaz" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "Yayın süresi 24 saati geçemez" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "Üst üste binen show'lar olamaz" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "Kullanıcıları Ara:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "DJ'ler:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "Kullanıcı Adı:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "Şifre:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "Şifre Onayı:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "İsim:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "Soyisim:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "Eposta:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "Cep Telefonu:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "Kullanıcı Tipi:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "Kullanıcı adı eşsiz değil." + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "Tarih Başlangıcı:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "Parça Adı:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "Oluşturan:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "Albüm:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "Yıl:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "Plak Şirketi:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "Besteleyen:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "Orkestra Şefi:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "Ruh Hali:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "BPM:" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "Telif Hakkı:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC No:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "Websitesi:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "Dil:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "Başlangıç Saati" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "Bitiş Saati" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "Arayüz Zaman Dilimi" + +#: application/forms/GeneralPreferences.php:26 +msgid "Station Name" +msgstr "Radyo Adı" + +#: application/forms/GeneralPreferences.php:34 +msgid "Station Description" +msgstr "" + +#: application/forms/GeneralPreferences.php:43 +msgid "Station Logo:" +msgstr "Radyo Logosu:" + +#: application/forms/GeneralPreferences.php:44 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "" + +#: application/forms/GeneralPreferences.php:64 +msgid "Default Crossfade Duration (s):" +msgstr "Varsayılan Çarpraz Geçiş Süresi:" + +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 +msgid "Please enter a time in seconds (eg. 0.5)" +msgstr "" + +#: application/forms/GeneralPreferences.php:78 +msgid "Default Fade In (s):" +msgstr "Varsayılan Fade In geçişi (s)" + +#: application/forms/GeneralPreferences.php:92 +msgid "Default Fade Out (s):" +msgstr "Varsayılan Fade Out geçişi (s)" + +#: application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: application/forms/GeneralPreferences.php:123 +msgid "Overwrite Podcast Episode Metatags" +msgstr "" + +#: application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: application/forms/GeneralPreferences.php:162 +msgid "" +"Enabling this feature will allow LibreTime to provide schedule data\n" +" to external widgets that can be embedded in your website." +msgstr "" + +#: application/forms/GeneralPreferences.php:174 +msgid "Allowed CORS URLs" +msgstr "" + +#: application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "" + +#: application/forms/GeneralPreferences.php:180 +msgid "Default Language" +msgstr "" + +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "Radyo Saat Dilimi" + +#: application/forms/GeneralPreferences.php:194 +msgid "Week Starts On" +msgstr "Hafta Başlangıcı" + +#: application/forms/GeneralPreferences.php:210 +msgid "Display login button on your Radio Page?" +msgstr "" + +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" +msgstr "" + +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:18 +msgid "Auto Switch Off:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:25 +msgid "Auto Switch On:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:32 +msgid "Switch Transition Fade (s):" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:82 +msgid "Master Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 +msgid "Only numbers are allowed." +msgstr "Sadece rakam girebilirsiniz." + +#: application/forms/LiveStreamingPreferences.php:92 +msgid "Master Source Mount:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:103 +msgid "Show Source Host:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:113 +msgid "Show Source Port:" +msgstr "" + +#: application/forms/LiveStreamingPreferences.php:122 +msgid "Show Source Mount:" +msgstr "" + +#: application/forms/Login.php:78 +msgid "Login" +msgstr "Giriş yap" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 +msgid "Password" +msgstr "Şifre" + +#: application/forms/PasswordChange.php:26 +msgid "Confirm new password" +msgstr "Yeni şifreyi onayla" + +#: application/forms/PasswordChange.php:34 +msgid "Password confirmation does not match your password." +msgstr "Onay şifresiyle şifreniz aynı değil." + +#: application/forms/PasswordRestore.php:12 +msgid "Email" +msgstr "" + +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "Kullanıcı adı" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "Parolayı değiştir" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" +msgstr "" + +#: application/forms/Player.php:14 +msgid "Now Playing" +msgstr "" + +#: application/forms/Player.php:25 +msgid "Select Stream:" +msgstr "" + +#: application/forms/Player.php:28 +msgid "Auto detect the most appropriate stream to use." +msgstr "" + +#: application/forms/Player.php:29 +msgid "Select a stream:" +msgstr "" + +#: application/forms/Player.php:41 +msgid " - Mobile friendly" +msgstr "" + +#: application/forms/Player.php:45 +msgid " - The player does not support Opus streams." +msgstr "" + +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "" + +#: application/forms/Player.php:78 +msgid "Preview:" +msgstr "" + +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" +msgstr "" + +#: application/forms/PodcastPreferences.php:11 +msgid "Public" +msgstr "" + +#: application/forms/PodcastPreferences.php:12 +msgid "Private" +msgstr "" + +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" +msgstr "" + +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" + +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "Tüm Show'larım:" + +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "Kriter seçiniz" + +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "Bit Oranı (Kbps)" + +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "Örnekleme Oranı (kHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "saat" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "dakika" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "parça" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "Dinamik" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "Sabit" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "Çalma listesi içeriğini karıştır" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "Karıştır" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Sınırlama boş veya 0'dan küçük olamaz" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "Sınırlama 24 saati geçemez" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "Değer tamsayı olmalıdır" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "Kriter ve Değişken seçin" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "Uzunluk '00:00:00' türünde olmalıdır" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "Değer rakam cinsinden girilmelidir" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "Değer 2147483648'den küçük olmalıdır" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "Değer %s karakter'den az olmalıdır" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "Değer boş bırakılamaz" + +#: application/forms/StreamSetting.php:25 +msgid "Hardware Audio Output:" +msgstr "" + +#: application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: application/forms/StreamSetting.php:35 +msgid "ALSA" +msgstr "" + +#: application/forms/StreamSetting.php:36 +msgid "AO" +msgstr "" + +#: application/forms/StreamSetting.php:37 +msgid "OSS" +msgstr "" + +#: application/forms/StreamSetting.php:38 +msgid "Portaudio" +msgstr "" + +#: application/forms/StreamSetting.php:39 +msgid "Pulseaudio" +msgstr "" + +#: application/forms/StreamSetting.php:40 +msgid "Jack" +msgstr "" + +#: application/forms/StreamSetting.php:47 +msgid "Icecast Vorbis Metadata" +msgstr "Icecast Vorbis Metadata" + +#: application/forms/StreamSetting.php:58 +msgid "Stream Label:" +msgstr "Yayın Etiketi:" + +#: application/forms/StreamSetting.php:59 +msgid "Artist - Title" +msgstr "Şarkıcı - Parça Adı" + +#: application/forms/StreamSetting.php:60 +msgid "Show - Artist - Title" +msgstr "Show - Şarkıcı - Parça Adı" + +#: application/forms/StreamSetting.php:61 +msgid "Station name - Show name" +msgstr "Radyo adı - Show adı" + +#: application/forms/StreamSetting.php:67 +msgid "Off Air Metadata" +msgstr "Yayın Dışında Gösterilecek Etiket" + +#: application/forms/StreamSetting.php:74 +msgid "Enable Replay Gain" +msgstr "ReplayGain'i aktif et" + +#: application/forms/StreamSetting.php:81 +msgid "Replay Gain Modifier" +msgstr "ReplayGain Değeri" + +#: application/forms/StreamSetting.php:90 +msgid "Streaming Server:" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Custom / 3rd Party Streaming" +msgstr "" + +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Etkin:" + +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" +msgstr "" + +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "Yayın Türü:" + +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "Bit Değeri:" + +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "Servis Türü:" + +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "Kanallar:" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "Sunucu" + +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "Port" + +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "URL" + +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "İsim" + +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "Bağlama Noktası" + +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "Yönetici Hesabı" + +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "Yönetici Şifresi" + +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "Sunucu değeri boş bırakılamaz." + +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "Port değeri boş bırakılamaz." + +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." + +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "" + +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "" + +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "" + +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "" + +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "" + +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "İçe Aktarım Klasörü" + +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "İzlenen Klasörler:" + +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "Geçerli bir Klasör değil." + +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "Değer gerekli ve boş bırakılamaz" + +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" + +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" + +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" + +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" + +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" + +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "Girdiğiniz şifreler örtüşmüyor." + +#: application/models/Auth.php:33 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Please click this link to reset your password: " +msgstr "" + +#: application/models/Auth.php:35 +#, php-format +msgid "" +"\n" +"\n" +"If you have any problems, please contact our support team: %s" +msgstr "" + +#: application/models/Auth.php:36 +#, php-format +msgid "" +"\n" +"\n" +"Thank you,\n" +"The %s Team" +msgstr "" + +#: application/models/Auth.php:38 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "" + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "" + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "" + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "" + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "" + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "" + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "" + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "" + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "" + +#: application/models/Schedule.php:210 +msgid "livestream" +msgstr "" + +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "" + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "" + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "" + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "" + +#: application/models/Show.php:229 +msgid "Shows can have a max length of 24 hours." +msgstr "" + +#: application/models/Show.php:345 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" + +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "" + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "" + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" +msgstr "" + +#: application/services/CalendarService.php:101 +msgid "Clear Show" +msgstr "" + +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" +msgstr "" + +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" +msgstr "" + +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "" + +#: application/services/CalendarService.php:189 +msgid "Delete Instance" +msgstr "" + +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" +msgstr "" + +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "" + +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "" + +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" +msgstr "" + +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" +msgstr "" + +#: public/setup/rabbitmq-setup.php:80 +msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." +msgstr "" + +#~ msgid "All rights are reserved" +#~ msgstr "Tüm Hakları Saklıdır" + +#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s." +#~ msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" + +#~ msgid "City:" +#~ msgstr "Şehir:" + +#~ msgid "Country:" +#~ msgstr "Ülke:" + +#~ msgid "Cursor" +#~ msgstr "Cursor" + +#~ msgid "Default License:" +#~ msgstr "Varsayılan Lisans Türü:" + +#~ msgid "First Name" +#~ msgstr "İsim" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC No:" + +#~ msgid "Last Name" +#~ msgstr "Soyisim" + +#~ msgid "Live stream" +#~ msgstr "Canlı yayın" + +#~ msgid "Logout" +#~ msgstr "Oturumu kapat" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "Phone:" +#~ msgstr "Telefon:" + +#~ msgid "Play" +#~ msgstr "Oynat" + +#~ msgid "Promote my station on %s" +#~ msgstr "Radyomu %s'da tanıt" + +#~ msgid "Set Cue In" +#~ msgstr "Cue In değerini ayarla" + +#~ msgid "Set Cue Out" +#~ msgstr "Cue Out değerini ayarla" + +#~ msgid "Share" +#~ msgstr "Paylaş" + +#~ msgid "Station Description:" +#~ msgstr "Radyo Tanımı:" + +#~ msgid "Station Web Site:" +#~ msgstr "Radyo Web Sitesi:" + +#~ msgid "Stop" +#~ msgstr "Durdur" + +#~ msgid "Style" +#~ msgstr "Stil" + +#~ msgid "The work is in the public domain" +#~ msgstr "Eser halka açık olarak kayıtlı" + +#~ msgid "Track:" +#~ msgstr "Parça Numarası:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin." + +#~ msgid "Who" +#~ msgstr "DJ" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." + +#~ msgid "next" +#~ msgstr "sonraki" + +#~ msgid "previous" +#~ msgstr "önceki" + +#~ msgid "stop" +#~ msgstr "Durdur" diff --git a/legacy/locale/zh_CN/LC_MESSAGES/libretime.po b/legacy/locale/zh_CN/LC_MESSAGES/libretime.po index ebabcb9c4..b5dbedc9a 100644 --- a/legacy/locale/zh_CN/LC_MESSAGES/libretime.po +++ b/legacy/locale/zh_CN/LC_MESSAGES/libretime.po @@ -1,2493 +1,1603 @@ -# LANGUAGE (xx_XX) translation for Airtime. +# Translation for LibreTime. # Copyright (C) 2012 Sourcefabric -# This file is distributed under the same license as the Airtime package. +# Copyright (C) 2021 LibreTime +# This file is distributed under the same license as the LibreTime package. # # Translators: # Sourcefabric , 2012 +# msgid "" msgstr "" -"Project-Id-Version: Airtime\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-06 10:49+0000\n" +"Project-Id-Version: LibreTime\n" +"Report-Msgid-Bugs-To: https://github.com/LibreTime/libretime/issues\n" +"POT-Creation-Date: 2021-10-15 19:56+0200\n" "PO-Revision-Date: 2015-09-05 08:33+0000\n" "Last-Translator: Daniel James \n" -"Language-Team: Chinese (China) (http://www.transifex.com/sourcefabric/airtime/language/zh_CN/)\n" +"Language-Team: Chinese (China)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: legacy/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email Sent!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:6 -msgid "A password reset link has been sent to your email address. Please check your email and follow the instructions inside to reset your password. If you don't see the email, please check your spam folder!" -msgstr "" - -#: legacy/application/views/scripts/login/password-restore-after.phtml:11 -#: legacy/application/views/scripts/form/password-restore.phtml:40 -#: legacy/application/forms/PasswordRestore.php:46 -msgid "Back" -msgstr "" - -#: legacy/application/views/scripts/login/index.phtml:3 -#: legacy/application/views/scripts/index/index.phtml:30 -#: legacy/application/forms/Login.php:77 -msgid "Login" -msgstr "登录" - -#: legacy/application/views/scripts/login/index.phtml:7 +#: application/common/DateHelper.php:216 #, php-format -msgid "Welcome to the %s demo! You can log in using the username 'admin' and the password 'admin'." -msgstr "" +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "1753 - 9999 是可以接受的年代值,而不是“%s”" -#: legacy/application/views/scripts/login/password-restore.phtml:3 -msgid "Password Reset" -msgstr "" - -#: legacy/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "新密码" - -#: legacy/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "请再次输入你的新密码。" - -#: legacy/application/views/scripts/playouthistory/index.phtml:2 -#: legacy/application/configs/navigation.php:121 -msgid "Playout History" -msgstr "播出历史" - -#: legacy/application/views/scripts/playouthistory/index.phtml:8 -msgid "Log Sheet" -msgstr "历史记录表单" - -#: legacy/application/views/scripts/playouthistory/index.phtml:9 -msgid "File Summary" -msgstr "文件播放记录" - -#: legacy/application/views/scripts/playouthistory/index.phtml:11 -msgid "Show Summary" -msgstr "节目播放记录" - -#: legacy/application/views/scripts/preference/directory-config.phtml:2 -#: legacy/application/controllers/LocaleController.php:181 -msgid "Manage Media Folders" -msgstr "管理媒体文件夹" - -#: legacy/application/views/scripts/preference/index.phtml:2 -#: legacy/application/configs/navigation.php:72 -msgid "General" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "流设定" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:5 -#: legacy/application/views/scripts/preference/stream-setting.phtml:118 -#: legacy/application/views/scripts/form/edit-user.phtml:163 -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -#: legacy/application/views/scripts/playlist/smart-block.phtml:92 -#: legacy/application/views/scripts/webstream/webstream.phtml:48 -#: legacy/application/views/scripts/podcast/podcast.phtml:46 -#: legacy/application/views/scripts/podcast/station.phtml:9 -#: legacy/application/views/scripts/podcast/station.phtml:127 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: legacy/application/controllers/LocaleController.php:308 -#: legacy/application/forms/EditAudioMD.php:278 -#: legacy/application/forms/AddUser.php:109 -#: legacy/application/forms/Preferences.php:37 -#: legacy/application/forms/PasswordChange.php:43 -#: legacy/application/forms/AddTracktype.php:60 -#: legacy/application/forms/EditHistory.php:131 -msgid "Save" -msgstr "保存" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:11 -msgid "Global" -msgstr "" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:88 -msgid "dB" -msgstr "分贝" - -#: legacy/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Streams" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:5 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: legacy/application/layouts/scripts/layout.phtml:64 -msgid "Dashboard" -msgstr "" - -#: legacy/application/views/scripts/showbuilder/index.phtml:26 -#: legacy/application/views/scripts/showbuilder/index.phtml:27 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:29 -#: legacy/application/views/scripts/showbuilder/builderDialog.phtml:30 -msgid "Scheduled Shows" -msgstr "" - -#: legacy/application/views/scripts/form/edit-user.phtml:1 -#: legacy/application/configs/navigation.php:78 -msgid "My Profile" -msgstr "" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "流" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:41 -#: legacy/application/views/scripts/form/stream-setting-form.phtml:55 -msgid "(Required)" -msgstr "(必填)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:84 -msgid "Additional Options" -msgstr "附属选项" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:144 -msgid "The following info will be displayed to listeners in their media player:" -msgstr "以下内容将会在听众的媒体播放器上显示:" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:177 -msgid "(Your radio station website)" -msgstr "(你电台的网站)" - -#: legacy/application/views/scripts/form/stream-setting-form.phtml:215 -msgid "Stream URL: " -msgstr "流的链接地址:" - -#: legacy/application/views/scripts/form/add-show-autoplaylist.phtml:14 -#: legacy/application/controllers/LocaleController.php:468 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:6 -msgid "TuneIn Settings" -msgstr "" - -#: legacy/application/views/scripts/form/preferences.phtml:12 -msgid "Dangerous Options" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:4 -msgid "Search Criteria:" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:13 -msgid "or" -msgstr "或" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:14 -msgid "and" -msgstr "和" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:35 -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:42 -msgid " ago " -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:38 -msgid "New Modifier" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:41 -msgid " to " -msgstr "到" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:62 -msgid "New Criteria" -msgstr "" - -#: legacy/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "选择节目项" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:53 -#: legacy/application/controllers/LocaleController.php:416 -#: legacy/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "无节目" - -#: legacy/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "查找" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "选择文件夹" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "设置" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "当前的导入文件夹:" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -#: legacy/application/controllers/LocaleController.php:66 -msgid "Add" -msgstr "添加" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:43 +#: application/common/DateHelper.php:219 #, php-format -msgid "Rescan watched directory (This is useful if it is network mount and may be out of sync with %s)" -msgstr "" +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s采用了错误的日期格式" -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "移除监控文件夹" - -#: legacy/application/views/scripts/form/preferences_watched_dirs.phtml:49 -msgid "You are not watching any media folders." -msgstr "你没有正在监控的文件夹。" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "选择天数:" - -#: legacy/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:18 -#: legacy/application/controllers/LocaleController.php:75 -#: legacy/application/forms/AddShowStyle.php:64 -#: legacy/application/forms/GeneralPreferences.php:55 -msgid "Remove" -msgstr "移除" - -#: legacy/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "重复天数:" - -#: legacy/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "查找节目" - -#: legacy/application/views/scripts/form/password-restore.phtml:5 -msgid "Please enter both your username and email address." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:29 -msgid "" -"Customize the player by configuring the options below. When you are done,\n" -" copy the embeddable code below and paste it into your website's HTML." -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:44 -msgid "Stream Compatibility" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:46 -msgid "Desktop" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:47 -msgid "Mobile" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:57 -#: legacy/application/views/scripts/form/player.phtml:58 -#: legacy/application/views/scripts/form/player.phtml:59 -msgid "Yes (Flash)" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:60 -msgid "MP3/OGG* only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:61 -msgid "MP3/AAC only" -msgstr "" - -#: legacy/application/views/scripts/form/player.phtml:64 -msgid "* Chrome on Android is known to take about 4 seconds to buffer a 128 kbps MP3 stream. Lower bitrates take longer to buffer." -msgstr "" - -#: legacy/application/views/scripts/form/daterange.phtml:6 -#: legacy/application/views/scripts/form/daterange.phtml:7 -msgid "Filter History" -msgstr "历史记录过滤" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:10 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:30 -#: legacy/application/views/scripts/partialviews/header.phtml:44 -msgid "Show Source" -msgstr "节目定制的输入流" - -#: legacy/application/views/scripts/form/add-show-live-stream.phtml:12 -msgid "DJs can use these settings to connect with compatible software and broadcast live during this show. Assign a DJ below." -msgstr "" - -#: legacy/application/views/scripts/form/login.phtml:40 -msgid "Forgot your password?" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:1 -msgid "Live Broadcasting" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:11 -#: legacy/application/views/scripts/partialviews/header.phtml:35 -msgid "Master Source" -msgstr "主输入流" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:13 -msgid "Use these settings in your broadcasting software to stream live at any time." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:19 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:36 -msgid "Override" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "OK" -msgstr "确定" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:22 -#: legacy/application/views/scripts/form/preferences_livestream.phtml:40 -msgid "RESET" -msgstr "" - -#: legacy/application/views/scripts/form/preferences_livestream.phtml:32 -msgid "DJs can use these settings in their broadcasting software to broadcast live only during shows assigned to them." -msgstr "" - -#: legacy/application/views/scripts/form/preferences_danger.phtml:6 -msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!" -msgstr "" - -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:1 -#: legacy/application/views/scripts/dashboard/help.phtml:2 +#: application/common/DateHelper.php:243 #, php-format -msgid "Welcome to %s!" +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s 采用了错误的时间格式" + +#: application/common/LocaleHelper.php:23 +msgid "English" msgstr "" -#: legacy/application/views/scripts/form/setup-lang-timezone.phtml:12 -msgid "You can change these later in your preferences and user settings." +#: application/common/LocaleHelper.php:24 +msgid "Afar" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:60 -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:17 -msgid "Subscribe" +#: application/common/LocaleHelper.php:25 +msgid "Abkhazian" msgstr "" -#: legacy/application/views/scripts/index/index.phtml:73 -msgid "Now Playing:" +#: application/common/LocaleHelper.php:26 +msgid "Afrikaans" msgstr "" -#: legacy/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "用户管理" - -#: legacy/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "新建用户" - -#: legacy/application/views/scripts/user/add-user.phtml:17 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:18 -msgid "id" -msgstr "编号" - -#: legacy/application/views/scripts/user/add-user.phtml:18 -#: legacy/application/forms/PasswordRestore.php:25 -#: legacy/application/forms/StreamSettingSubForm.php:164 -msgid "Username" -msgstr "用户名" - -#: legacy/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "名" - -#: legacy/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "姓" - -#: legacy/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "用户类型" - -#: legacy/application/views/scripts/listenerstat/show.phtml:2 -#: legacy/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listeners" +#: application/common/LocaleHelper.php:27 +msgid "Amharic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:5 -#: legacy/application/views/scripts/listenerstat/index.phtml:6 -msgid "Date Range" +#: application/common/LocaleHelper.php:28 +msgid "Arabic" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:13 -msgid "Show Name" +#: application/common/LocaleHelper.php:29 +msgid "Assamese" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:14 -msgid "Air Date" +#: application/common/LocaleHelper.php:30 +msgid "Aymara" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:15 -msgid "Average Listeners" +#: application/common/LocaleHelper.php:31 +msgid "Azerbaijani" msgstr "" -#: legacy/application/views/scripts/listenerstat/show.phtml:16 -msgid "Maximum Number of Listeners" +#: application/common/LocaleHelper.php:32 +msgid "Bashkir" msgstr "" -#: legacy/application/views/scripts/listenerstat/index.phtml:10 -msgid "Stream Data Collection Status" +#: application/common/LocaleHelper.php:33 +msgid "Belarusian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] "" - -#: legacy/application/views/scripts/playlist/update.phtml:25 -msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +#: application/common/LocaleHelper.php:34 +msgid "Bulgarian" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:76 -msgid "Expand Static Block" -msgstr "展开静态智能模块" - -#: legacy/application/views/scripts/playlist/update.phtml:81 -msgid "Expand Dynamic Block" -msgstr "展开动态智能模块" - -#: legacy/application/views/scripts/playlist/update.phtml:159 -msgid "Choose some search criteria above and click Generate to create this playlist." +#: application/common/LocaleHelper.php:35 +msgid "Bihari" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:161 -msgid "A track list will be generated when you schedule this smart block into a show." +#: application/common/LocaleHelper.php:36 +msgid "Bislama" msgstr "" -#: legacy/application/views/scripts/playlist/update.phtml:164 -msgid "Drag tracks here from your library to add them to the playlist" +#: application/common/LocaleHelper.php:37 +msgid "Bengali/Bangla" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:10 -#: legacy/application/views/scripts/playlist/smart-block.phtml:10 -#: legacy/application/views/scripts/webstream/webstream.phtml:8 -#: legacy/application/views/scripts/podcast/podcast.phtml:4 -msgid "Editing " +#: application/common/LocaleHelper.php:38 +msgid "Tibetan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:20 -#: legacy/application/views/scripts/playlist/smart-block.phtml:20 -#: legacy/application/views/scripts/webstream/webstream.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: legacy/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "名字:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:25 -#: legacy/application/views/scripts/playlist/smart-block.phtml:34 -#: legacy/application/views/scripts/library/publish-dialog.phtml:17 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:43 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:152 -#: legacy/application/forms/EditAudioMD.php:116 -#: legacy/application/forms/AddShowWhat.php:54 -#: legacy/application/forms/AddTracktype.php:36 -msgid "Description:" -msgstr "描述:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:37 -#: legacy/application/views/scripts/playlist/smart-block.phtml:48 -#: legacy/application/forms/AddShowWhen.php:89 -msgid "Duration:" -msgstr "时长:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:40 -#: legacy/application/views/scripts/playlist/smart-block.phtml:51 -msgid "Toggle Details" +#: application/common/LocaleHelper.php:39 +msgid "Breton" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle playlist" -msgstr "随机打乱播放列表" - -#: legacy/application/views/scripts/playlist/playlist.phtml:44 -#: legacy/application/forms/SmartBlockCriteria.php:580 -msgid "Shuffle" -msgstr "随机" - -#: legacy/application/views/scripts/playlist/playlist.phtml:48 -#: legacy/application/views/scripts/playlist/smart-block.phtml:61 -msgid "Playlist crossfade" -msgstr "播放列表交错淡入淡出效果" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -msgid "Empty playlist content" -msgstr "播放列表无内容" - -#: legacy/application/views/scripts/playlist/playlist.phtml:52 -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Clear" -msgstr "清除" - -#: legacy/application/views/scripts/playlist/playlist.phtml:60 -msgid "Fade in: " +#: application/common/LocaleHelper.php:40 +msgid "Catalan" msgstr "" -#: legacy/application/views/scripts/playlist/playlist.phtml:63 -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/smart-block.phtml:77 -msgid "Fade out: " -msgstr "淡出:" - -#: legacy/application/views/scripts/playlist/playlist.phtml:75 -#: legacy/application/views/scripts/playlist/smart-block.phtml:89 -#: legacy/application/views/scripts/webstream/webstream.phtml:45 -#: legacy/application/views/scripts/podcast/podcast.phtml:41 -#: legacy/application/controllers/LocaleController.php:309 -#: legacy/application/controllers/LocaleController.php:333 -#: legacy/application/forms/EditAudioMD.php:268 -#: legacy/application/forms/EditHistory.php:141 -msgid "Cancel" -msgstr "取消" - -#: legacy/application/views/scripts/playlist/playlist.phtml:78 -msgid "Save playlist" -msgstr "保存播放列表" - -#: legacy/application/views/scripts/playlist/playlist.phtml:86 -msgid "No open playlist" -msgstr "没有打开的播放列表" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:3 -#: legacy/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "显示波形图" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:6 -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -msgid "(ss.t)" -msgstr "(秒.分秒)" - -#: legacy/application/views/scripts/playlist/set-fade.phtml:19 -#: legacy/application/views/scripts/playlist/smart-block.phtml:73 -msgid "Fade in: " -msgstr "淡入:" - -#: legacy/application/views/scripts/playlist/smart-block.phtml:65 -msgid "Remove all content from this smart block" +#: application/common/LocaleHelper.php:41 +msgid "Corsican" msgstr "" -#: legacy/application/views/scripts/playlist/smart-block.phtml:98 -msgid "No smart block currently open" +#: application/common/LocaleHelper.php:42 +msgid "Czech" msgstr "" -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "切入:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:5 -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "(时:分:秒.分秒)" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "切出:" - -#: legacy/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "原始长度:" - -#: legacy/application/views/scripts/plupload/index.phtml:73 -#: legacy/application/layouts/scripts/layout.phtml:56 -msgid "Upload" +#: application/common/LocaleHelper.php:43 +msgid "Welsh" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:78 -msgid "Drop files here or click to browse your computer." +#: application/common/LocaleHelper.php:44 +msgid "Danish" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:91 -msgid "Storage" +#: application/common/LocaleHelper.php:45 +msgid "German" msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:93 -#: legacy/application/controllers/LocaleController.php:329 -msgid "in use" -msgstr "使用中" +#: application/common/LocaleHelper.php:46 +msgid "Bhutani" +msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:96 +#: application/common/LocaleHelper.php:47 +msgid "Greek" +msgstr "" + +#: application/common/LocaleHelper.php:48 +msgid "Esperanto" +msgstr "" + +#: application/common/LocaleHelper.php:49 +msgid "Spanish" +msgstr "" + +#: application/common/LocaleHelper.php:50 +msgid "Estonian" +msgstr "" + +#: application/common/LocaleHelper.php:51 +msgid "Basque" +msgstr "" + +#: application/common/LocaleHelper.php:52 +msgid "Persian" +msgstr "" + +#: application/common/LocaleHelper.php:53 +msgid "Finnish" +msgstr "" + +#: application/common/LocaleHelper.php:54 +msgid "Fiji" +msgstr "" + +#: application/common/LocaleHelper.php:55 +msgid "Faeroese" +msgstr "" + +#: application/common/LocaleHelper.php:56 +msgid "French" +msgstr "" + +#: application/common/LocaleHelper.php:57 +msgid "Frisian" +msgstr "" + +#: application/common/LocaleHelper.php:58 +msgid "Irish" +msgstr "" + +#: application/common/LocaleHelper.php:59 +msgid "Scots/Gaelic" +msgstr "" + +#: application/common/LocaleHelper.php:60 +msgid "Galician" +msgstr "" + +#: application/common/LocaleHelper.php:61 +msgid "Guarani" +msgstr "" + +#: application/common/LocaleHelper.php:62 +msgid "Gujarati" +msgstr "" + +#: application/common/LocaleHelper.php:63 +msgid "Hausa" +msgstr "" + +#: application/common/LocaleHelper.php:64 +msgid "Hindi" +msgstr "" + +#: application/common/LocaleHelper.php:65 +msgid "Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:66 +msgid "Hungarian" +msgstr "" + +#: application/common/LocaleHelper.php:67 +msgid "Armenian" +msgstr "" + +#: application/common/LocaleHelper.php:68 +msgid "Interlingua" +msgstr "" + +#: application/common/LocaleHelper.php:69 +msgid "Interlingue" +msgstr "" + +#: application/common/LocaleHelper.php:70 +msgid "Inupiak" +msgstr "" + +#: application/common/LocaleHelper.php:71 +msgid "Indonesian" +msgstr "" + +#: application/common/LocaleHelper.php:72 +msgid "Icelandic" +msgstr "" + +#: application/common/LocaleHelper.php:73 +msgid "Italian" +msgstr "" + +#: application/common/LocaleHelper.php:74 +msgid "Hebrew" +msgstr "" + +#: application/common/LocaleHelper.php:75 +msgid "Japanese" +msgstr "" + +#: application/common/LocaleHelper.php:76 +msgid "Yiddish" +msgstr "" + +#: application/common/LocaleHelper.php:77 +msgid "Javanese" +msgstr "" + +#: application/common/LocaleHelper.php:78 +msgid "Georgian" +msgstr "" + +#: application/common/LocaleHelper.php:79 +msgid "Kazakh" +msgstr "" + +#: application/common/LocaleHelper.php:80 +msgid "Greenlandic" +msgstr "" + +#: application/common/LocaleHelper.php:81 +msgid "Cambodian" +msgstr "" + +#: application/common/LocaleHelper.php:82 +msgid "Kannada" +msgstr "" + +#: application/common/LocaleHelper.php:83 +msgid "Korean" +msgstr "" + +#: application/common/LocaleHelper.php:84 +msgid "Kashmiri" +msgstr "" + +#: application/common/LocaleHelper.php:85 +msgid "Kurdish" +msgstr "" + +#: application/common/LocaleHelper.php:86 +msgid "Kirghiz" +msgstr "" + +#: application/common/LocaleHelper.php:87 +msgid "Latin" +msgstr "" + +#: application/common/LocaleHelper.php:88 +msgid "Lingala" +msgstr "" + +#: application/common/LocaleHelper.php:89 +msgid "Laothian" +msgstr "" + +#: application/common/LocaleHelper.php:90 +msgid "Lithuanian" +msgstr "" + +#: application/common/LocaleHelper.php:91 +msgid "Latvian/Lettish" +msgstr "" + +#: application/common/LocaleHelper.php:92 +msgid "Malagasy" +msgstr "" + +#: application/common/LocaleHelper.php:93 +msgid "Maori" +msgstr "" + +#: application/common/LocaleHelper.php:94 +msgid "Macedonian" +msgstr "" + +#: application/common/LocaleHelper.php:95 +msgid "Malayalam" +msgstr "" + +#: application/common/LocaleHelper.php:96 +msgid "Mongolian" +msgstr "" + +#: application/common/LocaleHelper.php:97 +msgid "Moldavian" +msgstr "" + +#: application/common/LocaleHelper.php:98 +msgid "Marathi" +msgstr "" + +#: application/common/LocaleHelper.php:99 +msgid "Malay" +msgstr "" + +#: application/common/LocaleHelper.php:100 +msgid "Maltese" +msgstr "" + +#: application/common/LocaleHelper.php:101 +msgid "Burmese" +msgstr "" + +#: application/common/LocaleHelper.php:102 +msgid "Nauru" +msgstr "" + +#: application/common/LocaleHelper.php:103 +msgid "Nepali" +msgstr "" + +#: application/common/LocaleHelper.php:104 +msgid "Dutch" +msgstr "" + +#: application/common/LocaleHelper.php:105 +msgid "Norwegian" +msgstr "" + +#: application/common/LocaleHelper.php:106 +msgid "Occitan" +msgstr "" + +#: application/common/LocaleHelper.php:107 +msgid "(Afan)/Oromoor/Oriya" +msgstr "" + +#: application/common/LocaleHelper.php:108 +msgid "Punjabi" +msgstr "" + +#: application/common/LocaleHelper.php:109 +msgid "Polish" +msgstr "" + +#: application/common/LocaleHelper.php:110 +msgid "Pashto/Pushto" +msgstr "" + +#: application/common/LocaleHelper.php:111 +msgid "Portuguese" +msgstr "" + +#: application/common/LocaleHelper.php:112 +msgid "Quechua" +msgstr "" + +#: application/common/LocaleHelper.php:113 +msgid "Rhaeto-Romance" +msgstr "" + +#: application/common/LocaleHelper.php:114 +msgid "Kirundi" +msgstr "" + +#: application/common/LocaleHelper.php:115 +msgid "Romanian" +msgstr "" + +#: application/common/LocaleHelper.php:116 +msgid "Russian" +msgstr "" + +#: application/common/LocaleHelper.php:117 +msgid "Kinyarwanda" +msgstr "" + +#: application/common/LocaleHelper.php:118 +msgid "Sanskrit" +msgstr "" + +#: application/common/LocaleHelper.php:119 +msgid "Sindhi" +msgstr "" + +#: application/common/LocaleHelper.php:120 +msgid "Sangro" +msgstr "" + +#: application/common/LocaleHelper.php:121 +msgid "Serbo-Croatian" +msgstr "" + +#: application/common/LocaleHelper.php:122 +msgid "Singhalese" +msgstr "" + +#: application/common/LocaleHelper.php:123 +msgid "Slovak" +msgstr "" + +#: application/common/LocaleHelper.php:124 +msgid "Slovenian" +msgstr "" + +#: application/common/LocaleHelper.php:125 +msgid "Samoan" +msgstr "" + +#: application/common/LocaleHelper.php:126 +msgid "Shona" +msgstr "" + +#: application/common/LocaleHelper.php:127 +msgid "Somali" +msgstr "" + +#: application/common/LocaleHelper.php:128 +msgid "Albanian" +msgstr "" + +#: application/common/LocaleHelper.php:129 +msgid "Serbian" +msgstr "" + +#: application/common/LocaleHelper.php:130 +msgid "Siswati" +msgstr "" + +#: application/common/LocaleHelper.php:131 +msgid "Sesotho" +msgstr "" + +#: application/common/LocaleHelper.php:132 +msgid "Sundanese" +msgstr "" + +#: application/common/LocaleHelper.php:133 +msgid "Swedish" +msgstr "" + +#: application/common/LocaleHelper.php:134 +msgid "Swahili" +msgstr "" + +#: application/common/LocaleHelper.php:135 +msgid "Tamil" +msgstr "" + +#: application/common/LocaleHelper.php:136 +msgid "Tegulu" +msgstr "" + +#: application/common/LocaleHelper.php:137 +msgid "Tajik" +msgstr "" + +#: application/common/LocaleHelper.php:138 +msgid "Thai" +msgstr "" + +#: application/common/LocaleHelper.php:139 +msgid "Tigrinya" +msgstr "" + +#: application/common/LocaleHelper.php:140 +msgid "Turkmen" +msgstr "" + +#: application/common/LocaleHelper.php:141 +msgid "Tagalog" +msgstr "" + +#: application/common/LocaleHelper.php:142 +msgid "Setswana" +msgstr "" + +#: application/common/LocaleHelper.php:143 +msgid "Tonga" +msgstr "" + +#: application/common/LocaleHelper.php:144 +msgid "Turkish" +msgstr "" + +#: application/common/LocaleHelper.php:145 +msgid "Tsonga" +msgstr "" + +#: application/common/LocaleHelper.php:146 +msgid "Tatar" +msgstr "" + +#: application/common/LocaleHelper.php:147 +msgid "Twi" +msgstr "" + +#: application/common/LocaleHelper.php:148 +msgid "Ukrainian" +msgstr "" + +#: application/common/LocaleHelper.php:149 +msgid "Urdu" +msgstr "" + +#: application/common/LocaleHelper.php:150 +msgid "Uzbek" +msgstr "" + +#: application/common/LocaleHelper.php:151 +msgid "Vietnamese" +msgstr "" + +#: application/common/LocaleHelper.php:152 +msgid "Volapuk" +msgstr "" + +#: application/common/LocaleHelper.php:153 +msgid "Wolof" +msgstr "" + +#: application/common/LocaleHelper.php:154 +msgid "Xhosa" +msgstr "" + +#: application/common/LocaleHelper.php:155 +msgid "Yoruba" +msgstr "" + +#: application/common/LocaleHelper.php:156 +msgid "Chinese" +msgstr "" + +#: application/common/LocaleHelper.php:157 +msgid "Zulu" +msgstr "" + +#: application/common/Timezone.php:21 +msgid "Use station default" +msgstr "" + +#: application/common/UsabilityHints.php:65 +msgid "Upload some tracks below to add them to your library!" +msgstr "" + +#: application/common/UsabilityHints.php:69 #, php-format -msgid "%01.1fGB of %01.1fGB" +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:109 -#: legacy/application/controllers/LocaleController.php:112 -#: legacy/application/controllers/LocaleController.php:417 -msgid "All" -msgstr "全部" - -#: legacy/application/views/scripts/plupload/index.phtml:110 -msgid "Failed" +#: application/common/UsabilityHints.php:76 +msgid "Click the 'New Show' button and fill out the required fields." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:111 -msgid "Pending" +#: application/common/UsabilityHints.php:80 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." msgstr "" -#: legacy/application/views/scripts/plupload/index.phtml:114 -msgid "Recent Uploads" +#: application/common/UsabilityHints.php:89 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." msgstr "" -#: legacy/application/views/scripts/widgets/lib-table.phtml:4 -#: legacy/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "高级查询选项" - -#: legacy/application/views/scripts/webstream/webstream.phtml:24 -#: legacy/application/views/scripts/podcast/station.phtml:33 -#: legacy/application/views/scripts/systemstatus/index.phtml:31 -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:21 -#: legacy/application/controllers/LocaleController.php:441 -#: legacy/application/forms/SmartBlockCriteria.php:64 -#: legacy/application/forms/StreamSettingSubForm.php:148 -#: legacy/application/models/Block.php:1444 -#: legacy/application/models/Block.php:1544 -msgid "Description" -msgstr "描述" - -#: legacy/application/views/scripts/webstream/webstream.phtml:30 -msgid "Stream URL:" -msgstr "流的链接地址:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:35 -msgid "Default Length:" -msgstr "默认长度:" - -#: legacy/application/views/scripts/webstream/webstream.phtml:53 -msgid "No webstream" -msgstr "没有网络流媒体" - -#: legacy/application/views/scripts/podcast/featureupgrade-pane.phtml:17 -#: legacy/application/views/scripts/library/publish-dialog.phtml:49 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:3 -#: legacy/application/controllers/LocaleController.php:378 -#: legacy/application/controllers/LocaleController.php:406 -msgid "Close" -msgstr "关闭" - -#: legacy/application/views/scripts/podcast/podcast.phtml:11 -msgid "Podcast Name: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:15 -msgid "Podcast URL: " -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:19 -msgid "Download latest episodes:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:25 -msgid "Scheduling:" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:28 -msgid "Generate Smartblock and Playlist" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:30 -msgid "Smartblock and Playlist generated" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast.phtml:45 -msgid "Save podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/podcast_url_dialog.phtml:8 -msgid "RSS Feed URL:" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:6 -#: legacy/application/controllers/LocaleController.php:131 -#: legacy/application/configs/navigation.php:17 -msgid "My Podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:8 -#: legacy/application/views/scripts/podcast/station.phtml:126 -msgid "Save station podcast" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:12 -msgid "View Feed" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:20 -msgid "General Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:24 -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: legacy/application/forms/StreamSettingSubForm.php:142 -msgid "Name" -msgstr "名字" - -#: legacy/application/views/scripts/podcast/station.phtml:28 -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: legacy/application/controllers/LocaleController.php:87 -#: legacy/application/services/HistoryService.php:1116 -#: legacy/application/services/HistoryService.php:1157 -#: legacy/application/services/HistoryService.php:1174 -#: legacy/application/forms/SmartBlockCriteria.php:65 -#: legacy/application/models/Block.php:1445 -#: legacy/application/models/Block.php:1545 -msgid "Creator" -msgstr "作者" - -#: legacy/application/views/scripts/podcast/station.phtml:37 -#: legacy/application/controllers/LocaleController.php:98 -#: legacy/application/services/HistoryService.php:1128 -#: legacy/application/forms/SmartBlockCriteria.php:70 -#: legacy/application/models/Block.php:1450 -#: legacy/application/models/Block.php:1550 -msgid "Language" -msgstr "语种" - -#: legacy/application/views/scripts/podcast/station.phtml:48 -#: legacy/application/controllers/LocaleController.php:93 -#: legacy/application/services/HistoryService.php:1124 -#: legacy/application/services/HistoryService.php:1178 -#: legacy/application/forms/SmartBlockCriteria.php:61 -#: legacy/application/models/Block.php:1441 -#: legacy/application/models/Block.php:1541 -msgid "Copyright" -msgstr "版权" - -#: legacy/application/views/scripts/podcast/station.phtml:52 -#: legacy/application/controllers/LocaleController.php:442 -msgid "Link" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:58 -msgid "iTunes Fields" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:62 -#: legacy/application/controllers/LocaleController.php:440 -msgid "Author" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:67 -msgid "Keywords" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:72 -msgid "Summary" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:77 -msgid "Subtitle" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:82 -msgid "Category" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:87 -msgid "Explicit" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:93 -msgid "Privacy Settings" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:106 -#: legacy/application/controllers/LocaleController.php:483 -msgid "Feed URL" -msgstr "" - -#: legacy/application/views/scripts/podcast/station.phtml:117 +#: application/common/UsabilityHints.php:92 #, php-format msgid "" -"For detailed information on what these metadata fields mean, please see the %sRSS specification%s\n" -" or %sApple's podcasting documentation%s." +"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" +" %sCreate an unlinked show now%s." msgstr "" -#: legacy/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "导入文件进行中..." - -#: legacy/application/views/scripts/library/edit-file-md.phtml:4 -msgid "You do not have permission to edit this track." +#: application/common/UsabilityHints.php:96 +msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/library/publish-dialog.phtml:4 -msgid "Publishing" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:6 -msgid "Edit Metadata..." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:11 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: legacy/application/forms/EditAudioMD.php:52 -#: legacy/application/forms/Player.php:15 -msgid "Title:" -msgstr "歌曲名:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:14 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:37 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:151 -#: legacy/application/forms/EditAudioMD.php:62 -msgid "Creator:" -msgstr "作者:" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:20 -msgid "Publish to:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:27 -msgid "You have already published this track to all available sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:28 -msgid "Published tracks can be removed or updated below." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:32 -msgid "Published on:" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:36 -#: legacy/application/controllers/LocaleController.php:438 -msgid "Unpublish" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:39 -msgid "You haven't published this track to any sources!" -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:40 -msgid "Check the boxes above and hit 'Publish' to publish this track to the marked sources." -msgstr "" - -#: legacy/application/views/scripts/library/publish-dialog.phtml:53 -#: legacy/application/views/scripts/library/publish-dialog.phtml:54 -#: legacy/application/controllers/LocaleController.php:74 -msgid "Publish" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: legacy/application/forms/EditAudioMD.php:72 -msgid "Album:" -msgstr "专辑名:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -msgid "Track:" -msgstr "曲目编号:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:39 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:41 -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "Length:" -msgstr "长度:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "样本率:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: legacy/application/forms/StreamSettingSubForm.php:74 -msgid "Bit Rate:" -msgstr "比特率:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: legacy/application/forms/EditAudioMD.php:187 -msgid "Mood:" -msgstr "情怀:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: legacy/application/forms/EditAudioMD.php:134 -#: legacy/application/forms/AddShowWhat.php:45 -msgid "Genre:" -msgstr "风格:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: legacy/application/forms/EditAudioMD.php:144 -msgid "Year:" -msgstr "年份:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: legacy/application/forms/EditAudioMD.php:157 -msgid "Label:" -msgstr "标签:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: legacy/application/forms/EditAudioMD.php:197 -msgid "BPM:" -msgstr "拍子(BPM):" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: legacy/application/forms/EditAudioMD.php:167 -msgid "Composer:" -msgstr "编曲:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: legacy/application/forms/EditAudioMD.php:177 -msgid "Conductor:" -msgstr "制作:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: legacy/application/forms/EditAudioMD.php:207 -msgid "Copyright:" -msgstr "版权:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "ISRC编号:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: legacy/application/forms/EditAudioMD.php:227 -msgid "Website:" -msgstr "网站:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Artwork:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "Artwork Data:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:28 -#: legacy/application/forms/EditAudioMD.php:237 -#: legacy/application/forms/Login.php:66 -#: legacy/application/forms/EditUser.php:118 -msgid "Language:" -msgstr "语言:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:29 -#: legacy/application/forms/EditAudioMD.php:109 -msgid "Track Type:" -msgstr "" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:30 -msgid "File Path:" -msgstr "文件路径:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Web Stream" -msgstr "网络流媒体" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:49 -msgid "Dynamic Smart Block" -msgstr "动态智能模块" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:50 -msgid "Static Smart Block" -msgstr "静态智能模块" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:51 -msgid "Audio Track" -msgstr "音频文件" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:66 -msgid "Playlist Contents: " -msgstr "播放列表内容:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:68 -msgid "Static Smart Block Contents: " -msgstr "静态智能模块条件:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:107 -msgid "Dynamic Smart Block Criteria: " -msgstr "动态智能模块条件:" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:140 -msgid "Limit to " -msgstr "限制到" - -#: legacy/application/views/scripts/library/get-file-metadata.ajax.phtml:153 -#: legacy/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "链接地址:" - -#: legacy/application/views/scripts/systemstatus/index.phtml:26 +#: application/common/UsabilityHints.php:100 #, php-format -msgid "%s Version" +msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:30 -msgid "Service" +#: application/common/UsabilityHints.php:107 +msgid "Click on the show starting next and select 'Schedule Tracks'" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:32 -#: legacy/application/controllers/LocaleController.php:388 -#: legacy/application/controllers/LocaleController.php:389 -#: legacy/application/configs/navigation.php:103 -msgid "Status" -msgstr "系统状态" - -#: legacy/application/views/scripts/systemstatus/index.phtml:41 -msgid "PDO and PostgreSQL libraries" +#: application/common/UsabilityHints.php:111 +#, php-format +msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:58 -msgid "Database configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:77 -msgid "RabbitMQ configuration for LibreTime" -msgstr "" - -#: legacy/application/views/scripts/systemstatus/index.phtml:98 -#: legacy/application/configs/config-check.php:171 +#: application/configs/config-check.php:175 msgid "LibreTime media analyzer service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:104 -#: legacy/application/configs/config-check.php:177 +#: application/configs/config-check.php:182 msgid "Check that the libretime-analyzer service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:105 -#: legacy/application/views/scripts/systemstatus/index.phtml:125 -#: legacy/application/views/scripts/systemstatus/index.phtml:145 -#: legacy/application/views/scripts/systemstatus/index.phtml:165 -#: legacy/application/configs/config-check.php:178 -#: legacy/application/configs/config-check.php:198 -#: legacy/application/configs/config-check.php:218 -#: legacy/application/configs/config-check.php:238 +#: application/configs/config-check.php:183 +#: application/configs/config-check.php:204 +#: application/configs/config-check.php:225 +#: application/configs/config-check.php:246 +#: application/configs/config-check.php:267 msgid " and ensure that it's running with " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:107 -#: legacy/application/views/scripts/systemstatus/index.phtml:127 -#: legacy/application/views/scripts/systemstatus/index.phtml:147 -#: legacy/application/views/scripts/systemstatus/index.phtml:167 -#: legacy/application/configs/config-check.php:180 -#: legacy/application/configs/config-check.php:200 -#: legacy/application/configs/config-check.php:220 -#: legacy/application/configs/config-check.php:240 +#: application/configs/config-check.php:185 +#: application/configs/config-check.php:206 +#: application/configs/config-check.php:227 +#: application/configs/config-check.php:248 +#: application/configs/config-check.php:269 msgid "If not, try " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:118 -#: legacy/application/configs/config-check.php:191 +#: application/configs/config-check.php:196 msgid "LibreTime playout service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:124 -#: legacy/application/configs/config-check.php:197 +#: application/configs/config-check.php:203 msgid "Check that the libretime-playout service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:138 -#: legacy/application/configs/config-check.php:211 +#: application/configs/config-check.php:217 msgid "LibreTime liquidsoap service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:144 -#: legacy/application/configs/config-check.php:217 +#: application/configs/config-check.php:224 msgid "Check that the libretime-liquidsoap service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:158 -#: legacy/application/configs/config-check.php:231 +#: application/configs/config-check.php:238 msgid "LibreTime Celery Task service" msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:164 -#: legacy/application/configs/config-check.php:237 +#: application/configs/config-check.php:245 msgid "Check that the libretime-celery service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/systemstatus/index.phtml:175 -msgid "Disk Space" -msgstr "磁盘空间" - -#: legacy/application/views/scripts/embed/weekly-program.phtml:87 -msgid "Looks like there are no shows scheduled on this day." +#: application/configs/config-check.php:259 +msgid "LibreTime API service" msgstr "" -#: legacy/application/views/scripts/embed/weekly-program.phtml:96 -#: legacy/application/views/scripts/embed/player.phtml:247 -#: legacy/application/models/Preference.php:513 -#, php-format -msgid "Powered by %s" +#: application/configs/config-check.php:266 +msgid "Check that the libretime-api service is installed correctly in " msgstr "" -#: legacy/application/views/scripts/embed/player.phtml:242 -#: legacy/application/controllers/LocaleController.php:432 -msgid "Next" +#: application/configs/navigation.php:27 +msgid "Radio Page" msgstr "" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "往前" +#: application/configs/navigation.php:35 +msgid "Calendar" +msgstr "节目日程" -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "播放" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "暂停" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "往后" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "停止" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:60 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:90 -msgid "mute" -msgstr "静音" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:63 -#: legacy/application/views/scripts/dashboard/stream-player.phtml:91 -msgid "unmute" -msgstr "取消静音" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "最大音量" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "需要更新升级" - -#: legacy/application/views/scripts/audiopreview/audio-preview.phtml:80 -#, php-format -msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." -msgstr "想要播放媒体,需要更新你的浏览器到最新的版本,或者更新你的%sFalsh插件%s。" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "创建文件播放记录模板" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "创建历史记录表单模板" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "增加更多元素" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "添加新项目" - -#: legacy/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "设为默认模板" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:3 -msgid "Playout History Templates" +#: application/configs/navigation.php:43 +msgid "Widgets" msgstr "" -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:5 -msgid "Log Sheet Templates" -msgstr "历史记录表单模板" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:6 -msgid "New Log Sheet Template" -msgstr "新建历史记录模板" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:9 -msgid "No Log Sheet Templates" -msgstr "无历史记录表单模板" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:27 -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:58 -#: legacy/application/controllers/LocaleController.php:413 -msgid "Set Default" -msgstr "设为默认" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:36 -msgid "File Summary Templates" -msgstr "文件播放记录模板列表" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:37 -msgid "New File Summary Template" -msgstr "新建文件播放记录模板" - -#: legacy/application/views/scripts/playouthistorytemplate/index.phtml:40 -msgid "No File Summary Templates" -msgstr "无文件播放记录模板" - -#: legacy/application/views/scripts/dashboard/about.phtml:2 -msgid "About" -msgstr "关于" - -#: legacy/application/views/scripts/dashboard/about.phtml:9 -#, php-format -msgid "%1$s %2$s, the open radio software for scheduling and remote station management." -msgstr "" - -#: legacy/application/views/scripts/dashboard/about.phtml:22 -#, php-format -msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:3 -#, php-format -msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:6 -msgid "Upload audio tracks" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:7 -msgid "Click the 'Upload' button in the left corner to upload tracks to your library." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:8 -msgid "Schedule a show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:9 -msgid "Click on 'Calendar' in the navigation bar on the left. From there click the '+ New Show' button and fill out the required fields." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:10 -msgid "Add tracks to your show" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:11 -msgid "Click on your show in the calendar and select 'Schedule Show'. In the popup window drag tracks into your show." -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:16 -msgid "Now you're good to go!" -msgstr "" - -#: legacy/application/views/scripts/dashboard/help.phtml:19 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "详细的指导,可以参考%s用户手册%s。" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:2 -#: legacy/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "插播流" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "共享" - -#: legacy/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "选择流:" - -#: legacy/application/views/scripts/dashboard/table-test.phtml:2 -msgid "Table Test" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Add this show" -msgstr "添加此节目" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:6 -#: legacy/application/views/scripts/schedule/add-show-form.phtml:47 -msgid "Update show" -msgstr "更新节目" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "名称" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "时间" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:28 -msgid "Autoloading Playlist" -msgstr "" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:32 -msgid "Live Stream Input" -msgstr "输入流设置" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:36 -msgid "Who" -msgstr "管理和编辑" - -#: legacy/application/views/scripts/schedule/add-show-form.phtml:40 -msgid "Style" -msgstr "风格" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: legacy/application/controllers/LocaleController.php:283 -msgid "Start" -msgstr "开始" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: legacy/application/controllers/LocaleController.php:86 -#: legacy/application/services/HistoryService.php:1115 -#: legacy/application/services/HistoryService.php:1156 -#: legacy/application/services/HistoryService.php:1173 -#: legacy/application/forms/SmartBlockCriteria.php:80 -#: legacy/application/models/Block.php:1461 -#: legacy/application/models/Block.php:1561 -msgid "Title" -msgstr "标题" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: legacy/application/controllers/LocaleController.php:88 -#: legacy/application/services/HistoryService.php:1117 -#: legacy/application/forms/SmartBlockCriteria.php:56 -#: legacy/application/models/Block.php:1436 -#: legacy/application/models/Block.php:1536 -msgid "Album" -msgstr "专辑" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: legacy/application/controllers/LocaleController.php:101 -#: legacy/application/services/HistoryService.php:1118 -#: legacy/application/services/HistoryService.php:1176 -#: legacy/application/forms/SmartBlockCriteria.php:73 -#: legacy/application/models/Block.php:1454 -#: legacy/application/models/Block.php:1554 -msgid "Length" -msgstr "时长" - -#: legacy/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: legacy/application/controllers/LocaleController.php:95 -#: legacy/application/services/HistoryService.php:1119 -#: legacy/application/forms/SmartBlockCriteria.php:67 -#: legacy/application/forms/StreamSettingSubForm.php:127 -#: legacy/application/models/Block.php:1447 -#: legacy/application/models/Block.php:1547 -msgid "Genre" -msgstr "风格" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:4 -msgid "Manage Track Types" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:11 -msgid "New Track Type" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:19 -msgid "Code" -msgstr "" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:20 -#: legacy/application/controllers/LocaleController.php:97 -#: legacy/application/services/HistoryService.php:1121 -#: legacy/application/forms/SmartBlockCriteria.php:69 -#: legacy/application/models/Block.php:1449 -#: legacy/application/models/Block.php:1549 -msgid "Label" -msgstr "标签" - -#: legacy/application/views/scripts/tracktype/add-tracktype.phtml:22 -msgid "Visibility" -msgstr "" - -#: legacy/application/views/scripts/partialviews/header.phtml:9 -msgid "Previous:" -msgstr "之前的:" - -#: legacy/application/views/scripts/partialviews/header.phtml:16 -msgid "Next:" -msgstr "之后的:" - -#: legacy/application/views/scripts/partialviews/header.phtml:30 -msgid "Source Streams" -msgstr "输入流" - -#: legacy/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "直播中" - -#: legacy/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "收听" - -#: legacy/application/views/scripts/partialviews/header.phtml:62 -msgid "Logout" -msgstr "登出" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:3 -#: legacy/application/controllers/LocaleController.php:84 -msgid "Tracks" -msgstr "" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:8 -#: legacy/application/controllers/LocaleController.php:114 -msgid "Playlists" -msgstr "播放列表" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:13 -#: legacy/application/controllers/LocaleController.php:115 -msgid "Smart Blocks" -msgstr "智能模块" - -#: legacy/application/views/scripts/partialviews/dashboard-sub-nav.php:18 -msgid "Webstreams" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:5 -#: legacy/application/configs/navigation.php:56 -msgid "Weekly Schedule" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:11 -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:16 -#: legacy/application/forms/Player.php:77 -msgid "Preview:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:20 -#: legacy/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/schedule.phtml:24 -msgid "Copy this code and paste it into your website's HTML to embed the weekly schedule in your site. Adjust the height and width attributes to your desired size." -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:5 -msgid "Facebook Radio Player" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:8 -msgid "Add to My Facebook Page" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:27 -msgid "Tips:" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:29 -msgid "To make the tab more visible on your Facebook page, click 'More', and 'Manage Tabs':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/facebook.phtml:32 -msgid "Then, drag the Radio Player item higher in the list, and click Save. It will now appear as one of the default tabs instead of being buried under 'More':" -msgstr "" - -#: legacy/application/views/scripts/embeddablewidgets/player.phtml:6 -#: legacy/application/configs/navigation.php:50 +#: application/configs/navigation.php:52 msgid "Player" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:5 -#: legacy/application/views/scripts/error/error-500.phtml:5 -#: legacy/application/views/scripts/error/error-404.phtml:5 -#: legacy/application/views/scripts/error/error-400.phtml:5 -#: legacy/application/views/scripts/error/error.phtml:6 -msgid "An error has occurred." +#: application/configs/navigation.php:58 +msgid "Weekly Schedule" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:10 -msgid "Access Denied!" +#: application/configs/navigation.php:66 +msgid "Settings" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:11 -msgid "You do not have permission to access this page!" +#: application/configs/navigation.php:74 +msgid "General" msgstr "" -#: legacy/application/views/scripts/error/error-403.phtml:13 -#: legacy/application/views/scripts/error/error-500.phtml:13 -#: legacy/application/views/scripts/error/error-404.phtml:13 -#: legacy/application/views/scripts/error/error-400.phtml:13 -#: legacy/application/views/scripts/error/error.phtml:14 -#: legacy/application/configs/navigation.php:152 +#: application/configs/navigation.php:80 +msgid "My Profile" +msgstr "" + +#: application/configs/navigation.php:85 +msgid "Users" +msgstr "用户管理" + +#: application/configs/navigation.php:91 +msgid "Track Types" +msgstr "" + +#: application/configs/navigation.php:98 +msgid "Streams" +msgstr "媒体流设置" + +#: application/configs/navigation.php:105 +#: application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:383 +msgid "Status" +msgstr "系统状态" + +#: application/configs/navigation.php:114 +msgid "Analytics" +msgstr "" + +#: application/configs/navigation.php:123 +msgid "Playout History" +msgstr "播出历史" + +#: application/configs/navigation.php:130 +msgid "History Templates" +msgstr "历史记录模板" + +#: application/configs/navigation.php:137 +msgid "Listener Stats" +msgstr "收听状态" + +#: application/configs/navigation.php:144 +msgid "Show Listener Stats" +msgstr "" + +#: application/configs/navigation.php:153 msgid "Help" msgstr "帮助" -#: legacy/application/views/scripts/error/error-500.phtml:10 -msgid "Oops!" +#: application/configs/navigation.php:161 +msgid "Getting Started" +msgstr "基本用法" + +#: application/configs/navigation.php:168 +msgid "User Manual" +msgstr "用户手册" + +#: application/configs/navigation.php:173 +msgid "Get Help Online" msgstr "" -#: legacy/application/views/scripts/error/error-500.phtml:11 -#: legacy/application/controllers/LocaleController.php:26 -msgid "Something went wrong!" +#: application/configs/navigation.php:178 +msgid "Contribute to LibreTime" msgstr "" -#: legacy/application/views/scripts/error/error-404.phtml:10 -msgid "Page not found!" -msgstr "页面不存在!" - -#: legacy/application/views/scripts/error/error-404.phtml:11 -msgid "We couldn't find the page you were looking for." +#: application/configs/navigation.php:183 +msgid "What's New?" msgstr "" -#: legacy/application/views/scripts/error/error-400.phtml:10 -msgid "Bad Request!" -msgstr "" - -#: legacy/application/views/scripts/error/error-400.phtml:11 -msgid "The requested action is not supported!" -msgstr "" - -#: legacy/application/views/scripts/error/error.phtml:12 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "你所寻找的页面不存在!" - -#: legacy/application/layouts/scripts/audio-player.phtml:5 -#: legacy/application/controllers/LocaleController.php:25 -msgid "Audio Player" -msgstr "音频播放器" - -#: legacy/application/layouts/scripts/layout.phtml:45 -#: legacy/application/controllers/LocaleController.php:85 -msgid "Playlist" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:48 -#: legacy/application/controllers/LocaleController.php:477 -msgid "Smart Block" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:51 -msgid "Webstream" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:70 -msgid "Podcasts" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:126 -#: legacy/application/layouts/scripts/layout.phtml:152 -msgid "Play" -msgstr "试听" - -#: legacy/application/layouts/scripts/layout.phtml:127 -#: legacy/application/layouts/scripts/layout.phtml:153 -msgid "Stop" -msgstr "暂停" - -#: legacy/application/layouts/scripts/layout.phtml:131 -#: legacy/application/controllers/LocaleController.php:295 -#: legacy/application/forms/SmartBlockCriteria.php:62 -#: legacy/application/models/Block.php:1442 -#: legacy/application/models/Block.php:1542 -msgid "Cue In" -msgstr "切入" - -#: legacy/application/layouts/scripts/layout.phtml:133 -msgid "Set Cue In" -msgstr "设为切入时间" - -#: legacy/application/layouts/scripts/layout.phtml:138 -#: legacy/application/controllers/LocaleController.php:296 -#: legacy/application/forms/SmartBlockCriteria.php:63 -#: legacy/application/models/Block.php:1443 -#: legacy/application/models/Block.php:1543 -msgid "Cue Out" -msgstr "切出" - -#: legacy/application/layouts/scripts/layout.phtml:140 -msgid "Set Cue Out" -msgstr "设为切出时间" - -#: legacy/application/layouts/scripts/layout.phtml:157 -msgid "Cursor" -msgstr "设置游标" - -#: legacy/application/layouts/scripts/layout.phtml:158 -#: legacy/application/controllers/LocaleController.php:297 -msgid "Fade In" -msgstr "淡入" - -#: legacy/application/layouts/scripts/layout.phtml:159 -#: legacy/application/controllers/LocaleController.php:298 -msgid "Fade Out" -msgstr "淡出" - -#: legacy/application/layouts/scripts/layout.phtml:174 -msgid "Welcome to LibreTime" -msgstr "" - -#: legacy/application/layouts/scripts/layout.phtml:175 -msgid "" -"LibreTime is free software for radio stations built by a community.\n" -" You can find out more information at LibreTime.org. We are built as a fork of Airtime.\n" -" If you have any questions you can also go to https://discourse.libretime.org and ask them." -msgstr "" - -#: legacy/application/layouts/scripts/login.phtml:23 -#, php-format -msgid "%1$s copyright © %2$s All rights reserved.
Maintained and distributed under the %3$s by %4$s" -msgstr "" - -#: legacy/application/controllers/DashboardController.php:35 -#: legacy/application/controllers/DashboardController.php:84 -msgid "You don't have permission to disconnect source." -msgstr "你没有断开输入源的权限。" - -#: legacy/application/controllers/DashboardController.php:37 -#: legacy/application/controllers/DashboardController.php:86 -msgid "There is no source connected to this input." -msgstr "没有连接上的输入源。" - -#: legacy/application/controllers/DashboardController.php:81 -msgid "You don't have permission to switch source." -msgstr "你没有切换的权限。" - -#: legacy/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "" - -#: legacy/application/controllers/LoginController.php:160 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "邮件发送失败。请检查邮件服务器设置,并确定设置无误。" - -#: legacy/application/controllers/LoginController.php:163 -msgid "That username or email address could not be found." -msgstr "" - -#: legacy/application/controllers/LoginController.php:166 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: legacy/application/controllers/LoginController.php:244 -msgid "Wrong username or password provided. Please try again." -msgstr "用户名或密码错误,请重试。" - -#: legacy/application/controllers/WebstreamController.php:28 -#: legacy/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "未命名的网络流媒体" - -#: legacy/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "网络流媒体已保存。" - -#: legacy/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "无效的表格内容。" - -#: legacy/application/controllers/ErrorController.php:87 -msgid "Page not found." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:96 -msgid "The requested action is not supported." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:107 -msgid "You do not have permission to access this resource." -msgstr "" - -#: legacy/application/controllers/ErrorController.php:118 -msgid "An internal application error has occurred." -msgstr "" - -#: legacy/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "用户已添加成功!" - -#: legacy/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "用于已成功更新!" - -#: legacy/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "设置更新成功!" - -#: legacy/application/controllers/ShowbuilderController.php:134 -#: legacy/application/controllers/LibraryController.php:93 -#: legacy/application/controllers/LocaleController.php:174 -#: legacy/application/forms/SmartBlockCriteria.php:568 -msgid "Preview" -msgstr "预览" - -#: legacy/application/controllers/ShowbuilderController.php:136 -msgid "Select cursor" -msgstr "选择游标" - -#: legacy/application/controllers/ShowbuilderController.php:137 -msgid "Remove cursor" -msgstr "删除游标" - -#: legacy/application/controllers/ShowbuilderController.php:142 -#: legacy/application/controllers/LibraryController.php:120 -#: legacy/application/controllers/LibraryController.php:155 -#: legacy/application/controllers/LibraryController.php:174 -#: legacy/application/controllers/LocaleController.php:73 -#: legacy/application/services/CalendarService.php:188 -#: legacy/application/services/CalendarService.php:205 -#: legacy/application/services/CalendarService.php:210 -msgid "Delete" -msgstr "删除" - -#: legacy/application/controllers/ShowbuilderController.php:156 -msgid "show does not exist" -msgstr "节目不存在" - -#: legacy/application/controllers/PreferenceController.php:74 -msgid "Preferences updated." -msgstr "属性已更新。" - -#: legacy/application/controllers/PreferenceController.php:308 -msgid "Stream Setting Updated." -msgstr "流设置已更新。" - -#: legacy/application/controllers/PreferenceController.php:356 -msgid "path should be specified" -msgstr "请指定路径" - -#: legacy/application/controllers/PreferenceController.php:451 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoap出错..." - -#: legacy/application/controllers/PreferenceController.php:513 -msgid "Request method not accepted" -msgstr "" - -#: legacy/application/controllers/IndexController.php:90 -#, php-format -msgid "%s Podcast" -msgstr "" - -#: legacy/application/controllers/IndexController.php:91 -msgid "No tracks have been published yet." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:29 -#: legacy/application/controllers/PlaylistController.php:149 -#, php-format -msgid "%s not found" -msgstr "%s不存在" - -#: legacy/application/controllers/LibraryController.php:38 -#: legacy/application/controllers/PlaylistController.php:170 -msgid "Something went wrong." -msgstr "未知错误。" - -#: legacy/application/controllers/LibraryController.php:113 -#: legacy/application/controllers/LibraryController.php:143 -#: legacy/application/controllers/LibraryController.php:166 -msgid "Add to Playlist" -msgstr "添加到播放列表" - -#: legacy/application/controllers/LibraryController.php:115 -msgid "Add to Smart Block" -msgstr "添加到智能模块" - -#: legacy/application/controllers/LibraryController.php:121 -#: legacy/application/controllers/LibraryController.php:150 -#: legacy/application/controllers/LibraryController.php:172 -msgid "Edit..." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:129 -#: legacy/application/controllers/ScheduleController.php:708 -msgid "Download" -msgstr "下载" - -#: legacy/application/controllers/LibraryController.php:134 -msgid "Duplicate Playlist" -msgstr "复制播放列表" - -#: legacy/application/controllers/LibraryController.php:137 -msgid "Duplicate Smartblock" -msgstr "" - -#: legacy/application/controllers/LibraryController.php:179 -msgid "No action available" -msgstr "没有操作选择" - -#: legacy/application/controllers/LibraryController.php:199 -msgid "You don't have permission to delete selected items." -msgstr "你没有删除选定项目的权限。" - -#: legacy/application/controllers/LibraryController.php:245 -msgid "Could not delete file because it is scheduled in the future." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:248 -msgid "Could not delete file(s)." -msgstr "" - -#: legacy/application/controllers/LibraryController.php:289 -#: legacy/application/controllers/LibraryController.php:324 -#, php-format -msgid "Copy of %s" -msgstr "%s的副本" - -#: legacy/application/controllers/ListenerstatController.php:50 -msgid "Please make sure admin user/password is correct on Settings->Streams page." -msgstr "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。" - -#: legacy/application/controllers/ApiController.php:103 -#: legacy/application/controllers/ApiController.php:715 +#: application/controllers/ApiController.php:113 +#: application/controllers/ApiController.php:729 msgid "You are not allowed to access this resource." msgstr "你没有访问该资源的权限" -#: legacy/application/controllers/ApiController.php:348 -#: legacy/application/controllers/ApiController.php:423 -#: legacy/application/controllers/ApiController.php:491 -#: legacy/application/controllers/ApiController.php:543 -#: legacy/application/controllers/ApiController.php:634 -#: legacy/application/controllers/ApiController.php:650 -#: legacy/application/controllers/ApiController.php:682 +#: application/controllers/ApiController.php:356 +#: application/controllers/ApiController.php:432 +#: application/controllers/ApiController.php:501 +#: application/controllers/ApiController.php:556 +#: application/controllers/ApiController.php:645 +#: application/controllers/ApiController.php:662 +#: application/controllers/ApiController.php:695 msgid "You are not allowed to access this resource. " msgstr "你没有访问该资源的权限" -#: legacy/application/controllers/ApiController.php:888 -#: legacy/application/controllers/ApiController.php:908 -#: legacy/application/controllers/ApiController.php:920 +#: application/controllers/ApiController.php:903 +#: application/controllers/ApiController.php:924 +#: application/controllers/ApiController.php:936 #, php-format msgid "File does not exist in %s" msgstr "" -#: legacy/application/controllers/ApiController.php:971 +#: application/controllers/ApiController.php:990 msgid "Bad request. no 'mode' parameter passed." msgstr "请求错误。没有提供‘模式’参数。" -#: legacy/application/controllers/ApiController.php:981 +#: application/controllers/ApiController.php:1002 msgid "Bad request. 'mode' parameter is invalid" msgstr "请求错误。提供的‘模式’参数无效。" -#: legacy/application/controllers/TracktypeController.php:68 -msgid "Track Type added successfully!" -msgstr "" +#: application/controllers/DashboardController.php:35 +#: application/controllers/DashboardController.php:87 +msgid "You don't have permission to disconnect source." +msgstr "你没有断开输入源的权限。" -#: legacy/application/controllers/TracktypeController.php:70 -msgid "Track Type updated successfully!" -msgstr "" +#: application/controllers/DashboardController.php:37 +#: application/controllers/DashboardController.php:89 +msgid "There is no source connected to this input." +msgstr "没有连接上的输入源。" -#: legacy/application/controllers/EmbeddablewidgetsController.php:28 +#: application/controllers/DashboardController.php:84 +msgid "You don't have permission to switch source." +msgstr "你没有切换的权限。" + +#: application/controllers/EmbeddablewidgetsController.php:26 msgid "" "To configure and use the embeddable player you must:

\n" " 1. Enable at least one MP3, AAC, or OGG stream under Settings -> Streams
\n" " 2. Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:41 +#: application/controllers/EmbeddablewidgetsController.php:39 msgid "" "To use the embeddable weekly schedule widget you must:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/EmbeddablewidgetsController.php:54 +#: application/controllers/EmbeddablewidgetsController.php:52 msgid "" "To add the Radio Tab to your Facebook Page, you must first:

\n" " Enable the Public LibreTime API under Settings -> Preferences" msgstr "" -#: legacy/application/controllers/PlaylistController.php:53 +#: application/controllers/ErrorController.php:96 +msgid "Page not found." +msgstr "" + +#: application/controllers/ErrorController.php:106 +msgid "The requested action is not supported." +msgstr "" + +#: application/controllers/ErrorController.php:116 +msgid "You do not have permission to access this resource." +msgstr "" + +#: application/controllers/ErrorController.php:127 +msgid "An internal application error has occurred." +msgstr "" + +#: application/controllers/IndexController.php:88 #, php-format -msgid "You are viewing an older version of %s" -msgstr "你所查看的%s已更改" +msgid "%s Podcast" +msgstr "" -#: legacy/application/controllers/PlaylistController.php:142 -msgid "You cannot add tracks to dynamic blocks." -msgstr "动态智能模块不能添加声音文件。" +#: application/controllers/IndexController.php:89 +msgid "No tracks have been published yet." +msgstr "" -#: legacy/application/controllers/PlaylistController.php:163 +#: application/controllers/LibraryController.php:29 +#: application/controllers/PlaylistController.php:150 #, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "你没有删除所选%s的权限。" +msgid "%s not found" +msgstr "%s不存在" -#: legacy/application/controllers/PlaylistController.php:176 -msgid "You can only add tracks to smart block." -msgstr "智能模块只能添加媒体文件。" +#: application/controllers/LibraryController.php:38 +#: application/controllers/PlaylistController.php:171 +msgid "Something went wrong." +msgstr "未知错误。" -#: legacy/application/controllers/PlaylistController.php:182 -#: legacy/application/controllers/LocaleController.php:48 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "播放列表只能添加声音文件,只能模块和网络流媒体。" +#: application/controllers/LibraryController.php:92 +#: application/controllers/LocaleController.php:171 +#: application/controllers/ShowbuilderController.php:136 +#: application/forms/SmartBlockCriteria.php:574 +msgid "Preview" +msgstr "预览" -#: legacy/application/controllers/PlaylistController.php:194 -msgid "Untitled Playlist" -msgstr "未命名的播放列表" +#: application/controllers/LibraryController.php:112 +#: application/controllers/LibraryController.php:144 +#: application/controllers/LibraryController.php:167 +msgid "Add to Playlist" +msgstr "添加到播放列表" -#: legacy/application/controllers/PlaylistController.php:196 -msgid "Untitled Smart Block" -msgstr "未命名的智能模块" +#: application/controllers/LibraryController.php:114 +msgid "Add to Smart Block" +msgstr "添加到智能模块" -#: legacy/application/controllers/PlaylistController.php:523 -msgid "Unknown Playlist" -msgstr "位置播放列表" +#: application/controllers/LibraryController.php:119 +#: application/controllers/LibraryController.php:156 +#: application/controllers/LibraryController.php:175 +#: application/controllers/LocaleController.php:75 +#: application/controllers/ShowbuilderController.php:143 +#: application/services/CalendarService.php:183 +#: application/services/CalendarService.php:200 +#: application/services/CalendarService.php:205 +msgid "Delete" +msgstr "删除" -#: legacy/application/controllers/LocaleController.php:28 +#: application/controllers/LibraryController.php:120 +#: application/controllers/LibraryController.php:151 +#: application/controllers/LibraryController.php:173 +msgid "Edit..." +msgstr "" + +#: application/controllers/LibraryController.php:131 +#: application/controllers/ScheduleController.php:736 +msgid "Download" +msgstr "下载" + +#: application/controllers/LibraryController.php:135 +msgid "Duplicate Playlist" +msgstr "复制播放列表" + +#: application/controllers/LibraryController.php:138 +msgid "Duplicate Smartblock" +msgstr "" + +#: application/controllers/LibraryController.php:180 +msgid "No action available" +msgstr "没有操作选择" + +#: application/controllers/LibraryController.php:200 +msgid "You don't have permission to delete selected items." +msgstr "你没有删除选定项目的权限。" + +#: application/controllers/LibraryController.php:245 +msgid "Could not delete file because it is scheduled in the future." +msgstr "" + +#: application/controllers/LibraryController.php:248 +msgid "Could not delete file(s)." +msgstr "" + +#: application/controllers/LibraryController.php:290 +#: application/controllers/LibraryController.php:325 +#, php-format +msgid "Copy of %s" +msgstr "%s的副本" + +#: application/controllers/ListenerstatController.php:51 +msgid "Please make sure admin user/password is correct on Settings->Streams page." +msgstr "请检查系统->媒体流设置中,管理员用户/密码的设置是否正确。" + +#: application/controllers/LocaleController.php:27 +msgid "Audio Player" +msgstr "音频播放器" + +#: application/controllers/LocaleController.php:28 +msgid "Something went wrong!" +msgstr "" + +#: application/controllers/LocaleController.php:30 msgid "Recording:" msgstr "录制:" -#: legacy/application/controllers/LocaleController.php:29 +#: application/controllers/LocaleController.php:31 msgid "Master Stream" msgstr "主输入源" -#: legacy/application/controllers/LocaleController.php:30 +#: application/controllers/LocaleController.php:32 msgid "Live Stream" msgstr "节目定制输入源" -#: legacy/application/controllers/LocaleController.php:31 +#: application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" msgstr "没有安排节目内容" -#: legacy/application/controllers/LocaleController.php:32 +#: application/controllers/LocaleController.php:34 msgid "Current Show:" msgstr "当前节目:" -#: legacy/application/controllers/LocaleController.php:33 +#: application/controllers/LocaleController.php:35 msgid "Current" msgstr "当前的" -#: legacy/application/controllers/LocaleController.php:35 +#: application/controllers/LocaleController.php:37 msgid "You are running the latest version" msgstr "你已经在使用最新版" -#: legacy/application/controllers/LocaleController.php:36 +#: application/controllers/LocaleController.php:38 msgid "New version available: " msgstr "版本有更新:" -#: legacy/application/controllers/LocaleController.php:37 +#: application/controllers/LocaleController.php:39 msgid "You have a pre-release version of LibreTime intalled." msgstr "" -#: legacy/application/controllers/LocaleController.php:38 +#: application/controllers/LocaleController.php:40 msgid "A patch update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:39 +#: application/controllers/LocaleController.php:41 msgid "A feature update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:40 +#: application/controllers/LocaleController.php:42 msgid "A major update for your LibreTime installation is available." msgstr "" -#: legacy/application/controllers/LocaleController.php:41 +#: application/controllers/LocaleController.php:43 msgid "Multiple major updates for LibreTime installation are available. Please upgrade as soon as possible." msgstr "" -#: legacy/application/controllers/LocaleController.php:43 +#: application/controllers/LocaleController.php:45 msgid "Add to current playlist" msgstr "添加到播放列表" -#: legacy/application/controllers/LocaleController.php:44 +#: application/controllers/LocaleController.php:46 msgid "Add to current smart block" msgstr "添加到只能模块" -#: legacy/application/controllers/LocaleController.php:45 +#: application/controllers/LocaleController.php:47 msgid "Adding 1 Item" msgstr "添加1项" -#: legacy/application/controllers/LocaleController.php:46 +#: application/controllers/LocaleController.php:48 #, php-format msgid "Adding %s Items" msgstr "添加%s项" -#: legacy/application/controllers/LocaleController.php:47 +#: application/controllers/LocaleController.php:49 msgid "You can only add tracks to smart blocks." msgstr "智能模块只能添加声音文件。" -#: legacy/application/controllers/LocaleController.php:51 +#: application/controllers/LocaleController.php:50 +#: application/controllers/PlaylistController.php:183 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "播放列表只能添加声音文件,只能模块和网络流媒体。" + +#: application/controllers/LocaleController.php:53 msgid "Please select a cursor position on timeline." msgstr "请在右部的时间表视图中选择一个游标位置。" -#: legacy/application/controllers/LocaleController.php:52 +#: application/controllers/LocaleController.php:54 msgid "You haven't added any tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:53 +#: application/controllers/LocaleController.php:55 msgid "You haven't added any playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:54 +#: application/controllers/LocaleController.php:56 msgid "You haven't added any podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:55 +#: application/controllers/LocaleController.php:57 msgid "You haven't added any smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:56 +#: application/controllers/LocaleController.php:58 msgid "You haven't added any webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:57 +#: application/controllers/LocaleController.php:59 msgid "Learn about tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:58 +#: application/controllers/LocaleController.php:60 msgid "Learn about playlists" msgstr "" -#: legacy/application/controllers/LocaleController.php:59 +#: application/controllers/LocaleController.php:61 msgid "Learn about podcasts" msgstr "" -#: legacy/application/controllers/LocaleController.php:60 +#: application/controllers/LocaleController.php:62 msgid "Learn about smart blocks" msgstr "" -#: legacy/application/controllers/LocaleController.php:61 +#: application/controllers/LocaleController.php:63 msgid "Learn about webstreams" msgstr "" -#: legacy/application/controllers/LocaleController.php:62 +#: application/controllers/LocaleController.php:64 msgid "Click 'New' to create one." msgstr "" -#: legacy/application/controllers/LocaleController.php:67 +#: application/controllers/LocaleController.php:68 +msgid "Add" +msgstr "添加" + +#: application/controllers/LocaleController.php:69 msgid "New" msgstr "" -#: legacy/application/controllers/LocaleController.php:68 -#: legacy/application/services/CalendarService.php:152 +#: application/controllers/LocaleController.php:70 +#: application/services/CalendarService.php:147 msgid "Edit" msgstr "编辑" -#: legacy/application/controllers/LocaleController.php:69 +#: application/controllers/LocaleController.php:71 msgid "Add to Schedule" msgstr "" -#: legacy/application/controllers/LocaleController.php:70 +#: application/controllers/LocaleController.php:72 msgid "Add to next show" msgstr "" -#: legacy/application/controllers/LocaleController.php:71 +#: application/controllers/LocaleController.php:73 msgid "Add to current show" msgstr "" -#: legacy/application/controllers/LocaleController.php:72 +#: application/controllers/LocaleController.php:74 msgid "Add after selected items" msgstr "" -#: legacy/application/controllers/LocaleController.php:76 +#: application/controllers/LocaleController.php:76 +msgid "Publish" +msgstr "" + +#: application/controllers/LocaleController.php:77 +#: application/forms/AddShowStyle.php:63 +#: application/forms/GeneralPreferences.php:55 +msgid "Remove" +msgstr "移除" + +#: application/controllers/LocaleController.php:78 msgid "Edit Metadata" msgstr "编辑元数据" -#: legacy/application/controllers/LocaleController.php:77 +#: application/controllers/LocaleController.php:79 msgid "Add to selected show" msgstr "添加到所选的节目" -#: legacy/application/controllers/LocaleController.php:78 +#: application/controllers/LocaleController.php:80 msgid "Select" msgstr "选择" -#: legacy/application/controllers/LocaleController.php:79 +#: application/controllers/LocaleController.php:81 msgid "Select this page" msgstr "选择此页" -#: legacy/application/controllers/LocaleController.php:80 +#: application/controllers/LocaleController.php:82 msgid "Deselect this page" msgstr "取消整页" -#: legacy/application/controllers/LocaleController.php:81 +#: application/controllers/LocaleController.php:83 msgid "Deselect all" msgstr "全部取消" -#: legacy/application/controllers/LocaleController.php:82 +#: application/controllers/LocaleController.php:84 msgid "Are you sure you want to delete the selected item(s)?" msgstr "确定删除选择的项?" -#: legacy/application/controllers/LocaleController.php:83 +#: application/controllers/LocaleController.php:85 msgid "Scheduled" msgstr "已安排进日程" -#: legacy/application/controllers/LocaleController.php:89 +#: application/controllers/LocaleController.php:86 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:3 +msgid "Tracks" +msgstr "" + +#: application/controllers/LocaleController.php:87 +msgid "Playlist" +msgstr "" + +#: application/controllers/LocaleController.php:88 +#: application/forms/SmartBlockCriteria.php:81 +#: application/models/Block.php:1470 application/models/Block.php:1566 +#: application/services/HistoryService.php:1053 +#: application/services/HistoryService.php:1088 +#: application/services/HistoryService.php:1103 +msgid "Title" +msgstr "标题" + +#: application/controllers/LocaleController.php:89 +#: application/forms/SmartBlockCriteria.php:66 +#: application/models/Block.php:1454 application/models/Block.php:1550 +#: application/services/HistoryService.php:1054 +#: application/services/HistoryService.php:1089 +#: application/services/HistoryService.php:1104 +msgid "Creator" +msgstr "作者" + +#: application/controllers/LocaleController.php:90 +#: application/forms/SmartBlockCriteria.php:57 +#: application/models/Block.php:1445 application/models/Block.php:1541 +#: application/services/HistoryService.php:1055 +msgid "Album" +msgstr "专辑" + +#: application/controllers/LocaleController.php:91 msgid "Bit Rate" msgstr "比特率" -#: legacy/application/controllers/LocaleController.php:90 -#: legacy/application/forms/SmartBlockCriteria.php:58 -#: legacy/application/models/Block.php:1438 -#: legacy/application/models/Block.php:1538 +#: application/controllers/LocaleController.php:92 +#: application/forms/SmartBlockCriteria.php:59 +#: application/models/Block.php:1447 application/models/Block.php:1543 msgid "BPM" msgstr "每分钟拍子数" -#: legacy/application/controllers/LocaleController.php:91 -#: legacy/application/services/HistoryService.php:1122 -#: legacy/application/services/HistoryService.php:1177 -#: legacy/application/forms/SmartBlockCriteria.php:59 -#: legacy/application/models/Block.php:1439 -#: legacy/application/models/Block.php:1539 +#: application/controllers/LocaleController.php:93 +#: application/forms/SmartBlockCriteria.php:60 +#: application/models/Block.php:1448 application/models/Block.php:1544 +#: application/services/HistoryService.php:1060 +#: application/services/HistoryService.php:1107 msgid "Composer" msgstr "作曲" -#: legacy/application/controllers/LocaleController.php:92 -#: legacy/application/services/HistoryService.php:1127 -#: legacy/application/forms/SmartBlockCriteria.php:60 -#: legacy/application/models/Block.php:1440 -#: legacy/application/models/Block.php:1540 +#: application/controllers/LocaleController.php:94 +#: application/forms/SmartBlockCriteria.php:61 +#: application/models/Block.php:1449 application/models/Block.php:1545 +#: application/services/HistoryService.php:1065 msgid "Conductor" msgstr "指挥" -#: legacy/application/controllers/LocaleController.php:94 -#: legacy/application/forms/SmartBlockCriteria.php:66 -#: legacy/application/models/Block.php:1446 -#: legacy/application/models/Block.php:1546 +#: application/controllers/LocaleController.php:95 +#: application/forms/SmartBlockCriteria.php:62 +#: application/models/Block.php:1450 application/models/Block.php:1546 +#: application/services/HistoryService.php:1062 +#: application/services/HistoryService.php:1108 +msgid "Copyright" +msgstr "版权" + +#: application/controllers/LocaleController.php:96 +#: application/forms/SmartBlockCriteria.php:67 +#: application/models/Block.php:1455 application/models/Block.php:1551 msgid "Encoded By" msgstr "编曲" -#: legacy/application/controllers/LocaleController.php:96 -#: legacy/application/services/HistoryService.php:1123 -#: legacy/application/forms/SmartBlockCriteria.php:68 -#: legacy/application/models/Block.php:1448 -#: legacy/application/models/Block.php:1548 +#: application/controllers/LocaleController.php:97 +#: application/forms/SmartBlockCriteria.php:68 +#: application/forms/StreamSettingSubForm.php:135 +#: application/models/Block.php:1456 application/models/Block.php:1552 +#: application/services/HistoryService.php:1057 +msgid "Genre" +msgstr "风格" + +#: application/controllers/LocaleController.php:98 +#: application/forms/SmartBlockCriteria.php:69 +#: application/models/Block.php:1457 application/models/Block.php:1553 +#: application/services/HistoryService.php:1061 msgid "ISRC" msgstr "ISRC码" -#: legacy/application/controllers/LocaleController.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:71 -#: legacy/application/models/Block.php:1452 -#: legacy/application/models/Block.php:1552 +#: application/controllers/LocaleController.php:99 +#: application/forms/SmartBlockCriteria.php:70 +#: application/models/Block.php:1458 application/models/Block.php:1554 +#: application/services/HistoryService.php:1059 +msgid "Label" +msgstr "标签" + +#: application/controllers/LocaleController.php:100 +#: application/forms/SmartBlockCriteria.php:71 +#: application/models/Block.php:1459 application/models/Block.php:1555 +#: application/services/HistoryService.php:1066 +msgid "Language" +msgstr "语种" + +#: application/controllers/LocaleController.php:101 +#: application/forms/SmartBlockCriteria.php:72 +#: application/models/Block.php:1461 application/models/Block.php:1557 msgid "Last Modified" msgstr "最近更新于" -#: legacy/application/controllers/LocaleController.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:72 -#: legacy/application/models/Block.php:1453 -#: legacy/application/models/Block.php:1553 +#: application/controllers/LocaleController.php:102 +#: application/forms/SmartBlockCriteria.php:73 +#: application/models/Block.php:1462 application/models/Block.php:1558 msgid "Last Played" msgstr "上次播放于" -#: legacy/application/controllers/LocaleController.php:102 -#: legacy/application/forms/SmartBlockCriteria.php:75 -#: legacy/application/models/Block.php:1456 -#: legacy/application/models/Block.php:1556 +#: application/controllers/LocaleController.php:103 +#: application/forms/SmartBlockCriteria.php:74 +#: application/models/Block.php:1463 application/models/Block.php:1559 +#: application/services/HistoryService.php:1056 +#: application/services/HistoryService.php:1106 +msgid "Length" +msgstr "时长" + +#: application/controllers/LocaleController.php:104 +#: application/forms/SmartBlockCriteria.php:76 +#: application/models/Block.php:1465 application/models/Block.php:1561 msgid "Mime" msgstr "MIME信息" -#: legacy/application/controllers/LocaleController.php:103 -#: legacy/application/services/HistoryService.php:1120 -#: legacy/application/forms/SmartBlockCriteria.php:76 -#: legacy/application/models/Block.php:1457 -#: legacy/application/models/Block.php:1557 +#: application/controllers/LocaleController.php:105 +#: application/forms/SmartBlockCriteria.php:77 +#: application/models/Block.php:1466 application/models/Block.php:1562 +#: application/services/HistoryService.php:1058 msgid "Mood" msgstr "风格" -#: legacy/application/controllers/LocaleController.php:104 -#: legacy/application/forms/SmartBlockCriteria.php:77 -#: legacy/application/models/Block.php:1458 -#: legacy/application/models/Block.php:1558 +#: application/controllers/LocaleController.php:106 +#: application/forms/SmartBlockCriteria.php:78 +#: application/models/Block.php:1467 application/models/Block.php:1563 msgid "Owner" msgstr "所有者" -#: legacy/application/controllers/LocaleController.php:105 -#: legacy/application/forms/SmartBlockCriteria.php:78 -#: legacy/application/models/Block.php:1459 -#: legacy/application/models/Block.php:1559 +#: application/controllers/LocaleController.php:107 +#: application/forms/SmartBlockCriteria.php:79 +#: application/models/Block.php:1468 application/models/Block.php:1564 msgid "Replay Gain" msgstr "回放增益" -#: legacy/application/controllers/LocaleController.php:106 +#: application/controllers/LocaleController.php:108 msgid "Sample Rate" msgstr "样本率" -#: legacy/application/controllers/LocaleController.php:107 -#: legacy/application/forms/SmartBlockCriteria.php:81 -#: legacy/application/models/Block.php:1462 -#: legacy/application/models/Block.php:1562 +#: application/controllers/LocaleController.php:109 +#: application/forms/SmartBlockCriteria.php:82 +#: application/models/Block.php:1471 application/models/Block.php:1567 msgid "Track Number" msgstr "曲目" -#: legacy/application/controllers/LocaleController.php:108 -#: legacy/application/forms/SmartBlockCriteria.php:82 -#: legacy/application/models/Block.php:1463 -#: legacy/application/models/Block.php:1563 +#: application/controllers/LocaleController.php:110 +#: application/forms/SmartBlockCriteria.php:83 +#: application/models/Block.php:1472 application/models/Block.php:1568 msgid "Uploaded" msgstr "上传于" -#: legacy/application/controllers/LocaleController.php:109 -#: legacy/application/forms/SmartBlockCriteria.php:83 -#: legacy/application/models/Block.php:1464 -#: legacy/application/models/Block.php:1564 +#: application/controllers/LocaleController.php:111 +#: application/forms/SmartBlockCriteria.php:84 +#: application/models/Block.php:1473 application/models/Block.php:1569 msgid "Website" msgstr "网址" -#: legacy/application/controllers/LocaleController.php:110 -#: legacy/application/services/HistoryService.php:1125 -#: legacy/application/forms/SmartBlockCriteria.php:84 -#: legacy/application/models/Block.php:1465 -#: legacy/application/models/Block.php:1565 +#: application/controllers/LocaleController.php:112 +#: application/forms/SmartBlockCriteria.php:85 +#: application/models/Block.php:1474 application/models/Block.php:1570 +#: application/services/HistoryService.php:1063 msgid "Year" msgstr "年代" -#: legacy/application/controllers/LocaleController.php:111 +#: application/controllers/LocaleController.php:113 msgid "Loading..." msgstr "加载中..." -#: legacy/application/controllers/LocaleController.php:113 +#: application/controllers/LocaleController.php:114 +#: application/controllers/LocaleController.php:411 +msgid "All" +msgstr "全部" + +#: application/controllers/LocaleController.php:115 msgid "Files" msgstr "文件" -#: legacy/application/controllers/LocaleController.php:116 +#: application/controllers/LocaleController.php:116 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:8 +msgid "Playlists" +msgstr "播放列表" + +#: application/controllers/LocaleController.php:117 +#: application/views/scripts/partialviews/dashboard-sub-nav.php:13 +msgid "Smart Blocks" +msgstr "智能模块" + +#: application/controllers/LocaleController.php:118 msgid "Web Streams" msgstr "网络流媒体" -#: legacy/application/controllers/LocaleController.php:117 +#: application/controllers/LocaleController.php:119 msgid "Unknown type: " msgstr "位置类型:" -#: legacy/application/controllers/LocaleController.php:118 +#: application/controllers/LocaleController.php:120 msgid "Are you sure you want to delete the selected item?" msgstr "确定删除所选项?" -#: legacy/application/controllers/LocaleController.php:119 -#: legacy/application/controllers/LocaleController.php:224 +#: application/controllers/LocaleController.php:121 +#: application/controllers/LocaleController.php:218 msgid "Uploading in progress..." msgstr "正在上传..." -#: legacy/application/controllers/LocaleController.php:120 +#: application/controllers/LocaleController.php:122 msgid "Retrieving data from the server..." msgstr "数据正在从服务器下载中..." -#: legacy/application/controllers/LocaleController.php:122 +#: application/controllers/LocaleController.php:124 msgid "Import" msgstr "" -#: legacy/application/controllers/LocaleController.php:123 +#: application/controllers/LocaleController.php:125 msgid "Imported?" msgstr "" -#: legacy/application/controllers/LocaleController.php:124 -#: legacy/application/services/CalendarService.php:61 -#: legacy/application/services/CalendarService.php:93 +#: application/controllers/LocaleController.php:126 +#: application/services/CalendarService.php:59 +#: application/services/CalendarService.php:89 msgid "View" msgstr "" -#: legacy/application/controllers/LocaleController.php:125 +#: application/controllers/LocaleController.php:127 msgid "Error code: " msgstr "错误代码:" -#: legacy/application/controllers/LocaleController.php:126 +#: application/controllers/LocaleController.php:128 msgid "Error msg: " msgstr "错误信息:" -#: legacy/application/controllers/LocaleController.php:127 +#: application/controllers/LocaleController.php:129 msgid "Input must be a positive number" msgstr "输入只能为正数" -#: legacy/application/controllers/LocaleController.php:128 +#: application/controllers/LocaleController.php:130 msgid "Input must be a number" msgstr "只允许数字输入" -#: legacy/application/controllers/LocaleController.php:129 +#: application/controllers/LocaleController.php:131 msgid "Input must be in the format: yyyy-mm-dd" msgstr "输入格式应为:年-月-日(yyyy-mm-dd)" -#: legacy/application/controllers/LocaleController.php:130 +#: application/controllers/LocaleController.php:132 msgid "Input must be in the format: hh:mm:ss.t" msgstr "输入格式应为:时:分:秒 (hh:mm:ss.t)" -#: legacy/application/controllers/LocaleController.php:134 +#: application/controllers/LocaleController.php:133 +msgid "My Podcast" +msgstr "" + +#: application/controllers/LocaleController.php:135 #, php-format msgid "You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?" msgstr "你正在上传文件。%s如果离开此页,上传过程将被打断。%s确定离开吗?" -#: legacy/application/controllers/LocaleController.php:136 +#: application/controllers/LocaleController.php:137 msgid "Open Media Builder" msgstr "打开媒体编辑器" -#: legacy/application/controllers/LocaleController.php:137 +#: application/controllers/LocaleController.php:138 msgid "please put in a time '00:00:00 (.0)'" msgstr "请输入时间‘00:00:00(.0)’" -#: legacy/application/controllers/LocaleController.php:138 +#: application/controllers/LocaleController.php:139 msgid "Please enter a valid time in seconds. Eg. 0.5" msgstr "" -#: legacy/application/controllers/LocaleController.php:139 +#: application/controllers/LocaleController.php:140 msgid "Your browser does not support playing this file type: " msgstr "你的浏览器不支持这种文件类型:" -#: legacy/application/controllers/LocaleController.php:140 +#: application/controllers/LocaleController.php:141 msgid "Dynamic block is not previewable" msgstr "动态智能模块无法预览" -#: legacy/application/controllers/LocaleController.php:141 +#: application/controllers/LocaleController.php:142 msgid "Limit to: " msgstr "限制在:" -#: legacy/application/controllers/LocaleController.php:142 +#: application/controllers/LocaleController.php:143 msgid "Playlist saved" msgstr "播放列表已存储" -#: legacy/application/controllers/LocaleController.php:143 +#: application/controllers/LocaleController.php:144 msgid "Playlist shuffled" msgstr "播放列表已经随机化" -#: legacy/application/controllers/LocaleController.php:145 +#: application/controllers/LocaleController.php:145 msgid "Airtime is unsure about the status of this file. This can happen when the file is on a remote drive that is unaccessible or the file is in a directory that isn't 'watched' anymore." msgstr "文件的状态不可知。这可能是由于文件位于远程存储位置,或者所在的文件夹已经不再监控。" -#: legacy/application/controllers/LocaleController.php:147 +#: application/controllers/LocaleController.php:147 #, php-format msgid "Listener Count on %s: %s" msgstr "听众统计%s:%s" -#: legacy/application/controllers/LocaleController.php:149 +#: application/controllers/LocaleController.php:149 msgid "Remind me in 1 week" msgstr "一周以后再提醒我" -#: legacy/application/controllers/LocaleController.php:150 +#: application/controllers/LocaleController.php:150 msgid "Remind me never" msgstr "不再提醒" -#: legacy/application/controllers/LocaleController.php:151 +#: application/controllers/LocaleController.php:151 msgid "Yes, help Airtime" msgstr "是的,帮助Airtime" -#: legacy/application/controllers/LocaleController.php:152 -#: legacy/application/controllers/LocaleController.php:202 +#: application/controllers/LocaleController.php:152 +#: application/controllers/LocaleController.php:196 msgid "Image must be one of jpg, jpeg, png, or gif" msgstr "图像文件格式只能是jpg,jpeg,png或者gif" -#: legacy/application/controllers/LocaleController.php:155 +#: application/controllers/LocaleController.php:154 msgid "A static smart block will save the criteria and generate the block content immediately. This allows you to edit and view it in the Library before adding it to a show." msgstr "静态的智能模块将会保存条件设置并且马上生成所有内容。这样就可以让你在添加到节目中前,还可以编辑和预览该智能模块。" -#: legacy/application/controllers/LocaleController.php:157 +#: application/controllers/LocaleController.php:155 msgid "A dynamic smart block will only save the criteria. The block content will get generated upon adding it to a show. You will not be able to view and edit the content in the Library." msgstr "动态的智能模块将只保存条件设置。而模块的内容将在每次添加到节目中是动态生成。在媒体库中,你不能直接编辑和预览动态智能模块。" -#: legacy/application/controllers/LocaleController.php:159 +#: application/controllers/LocaleController.php:156 #, php-format msgid "The desired block length will not be reached if %s cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." msgstr "" -#: legacy/application/controllers/LocaleController.php:160 +#: application/controllers/LocaleController.php:157 msgid "Smart block shuffled" msgstr "智能模块已经随机排列" -#: legacy/application/controllers/LocaleController.php:161 +#: application/controllers/LocaleController.php:158 msgid "Smart block generated and criteria saved" msgstr "智能模块已经生成,条件设置已经保存" -#: legacy/application/controllers/LocaleController.php:162 +#: application/controllers/LocaleController.php:159 msgid "Smart block saved" msgstr "智能模块已经保存" -#: legacy/application/controllers/LocaleController.php:163 +#: application/controllers/LocaleController.php:160 msgid "Processing..." msgstr "加载中..." -#: legacy/application/controllers/LocaleController.php:164 -#: legacy/application/forms/SmartBlockCriteria.php:96 -#: legacy/application/forms/SmartBlockCriteria.php:112 -#: legacy/application/forms/SmartBlockCriteria.php:128 -#: legacy/application/forms/SmartBlockCriteria.php:190 -#: legacy/application/forms/SmartBlockCriteria.php:374 -#: legacy/application/forms/SmartBlockCriteria.php:625 -#: legacy/application/forms/SmartBlockCriteria.php:686 -#: legacy/application/models/Block.php:1469 -#: legacy/application/models/Block.php:1569 +#: application/controllers/LocaleController.php:161 +#: application/forms/SmartBlockCriteria.php:100 +#: application/forms/SmartBlockCriteria.php:117 +#: application/forms/SmartBlockCriteria.php:133 +#: application/forms/SmartBlockCriteria.php:198 +#: application/forms/SmartBlockCriteria.php:380 +#: application/forms/SmartBlockCriteria.php:630 +#: application/forms/SmartBlockCriteria.php:689 +#: application/models/Block.php:1478 application/models/Block.php:1574 msgid "Select modifier" msgstr "选择操作符" -#: legacy/application/controllers/LocaleController.php:165 -#: legacy/application/forms/SmartBlockCriteria.php:97 -#: legacy/application/models/Block.php:1470 -#: legacy/application/models/Block.php:1570 +#: application/controllers/LocaleController.php:162 +#: application/forms/SmartBlockCriteria.php:101 +#: application/models/Block.php:1479 application/models/Block.php:1575 msgid "contains" msgstr "包含" -#: legacy/application/controllers/LocaleController.php:166 -#: legacy/application/forms/SmartBlockCriteria.php:98 -#: legacy/application/models/Block.php:1471 -#: legacy/application/models/Block.php:1571 +#: application/controllers/LocaleController.php:163 +#: application/forms/SmartBlockCriteria.php:102 +#: application/models/Block.php:1480 application/models/Block.php:1576 msgid "does not contain" msgstr "不包含" -#: legacy/application/controllers/LocaleController.php:167 -#: legacy/application/forms/SmartBlockCriteria.php:99 -#: legacy/application/forms/SmartBlockCriteria.php:113 -#: legacy/application/forms/SmartBlockCriteria.php:132 -#: legacy/application/forms/SmartBlockCriteria.php:191 -#: legacy/application/models/Block.php:1472 -#: legacy/application/models/Block.php:1479 -#: legacy/application/models/Block.php:1572 -#: legacy/application/models/Block.php:1579 +#: application/controllers/LocaleController.php:164 +#: application/forms/SmartBlockCriteria.php:103 +#: application/forms/SmartBlockCriteria.php:118 +#: application/forms/SmartBlockCriteria.php:137 +#: application/forms/SmartBlockCriteria.php:199 +#: application/models/Block.php:1481 application/models/Block.php:1488 +#: application/models/Block.php:1577 application/models/Block.php:1584 msgid "is" msgstr "是" -#: legacy/application/controllers/LocaleController.php:168 -#: legacy/application/forms/SmartBlockCriteria.php:100 -#: legacy/application/forms/SmartBlockCriteria.php:114 -#: legacy/application/forms/SmartBlockCriteria.php:133 -#: legacy/application/forms/SmartBlockCriteria.php:192 -#: legacy/application/models/Block.php:1473 -#: legacy/application/models/Block.php:1480 -#: legacy/application/models/Block.php:1573 -#: legacy/application/models/Block.php:1580 +#: application/controllers/LocaleController.php:165 +#: application/forms/SmartBlockCriteria.php:104 +#: application/forms/SmartBlockCriteria.php:119 +#: application/forms/SmartBlockCriteria.php:138 +#: application/forms/SmartBlockCriteria.php:200 +#: application/models/Block.php:1482 application/models/Block.php:1489 +#: application/models/Block.php:1578 application/models/Block.php:1585 msgid "is not" msgstr "不是" -#: legacy/application/controllers/LocaleController.php:169 -#: legacy/application/forms/SmartBlockCriteria.php:101 -#: legacy/application/models/Block.php:1474 -#: legacy/application/models/Block.php:1574 +#: application/controllers/LocaleController.php:166 +#: application/forms/SmartBlockCriteria.php:105 +#: application/models/Block.php:1483 application/models/Block.php:1579 msgid "starts with" msgstr "起始于" -#: legacy/application/controllers/LocaleController.php:170 -#: legacy/application/forms/SmartBlockCriteria.php:102 -#: legacy/application/models/Block.php:1475 -#: legacy/application/models/Block.php:1575 +#: application/controllers/LocaleController.php:167 +#: application/forms/SmartBlockCriteria.php:106 +#: application/models/Block.php:1484 application/models/Block.php:1580 msgid "ends with" msgstr "结束于" -#: legacy/application/controllers/LocaleController.php:171 -#: legacy/application/forms/SmartBlockCriteria.php:115 -#: legacy/application/forms/SmartBlockCriteria.php:134 -#: legacy/application/models/Block.php:1481 -#: legacy/application/models/Block.php:1581 +#: application/controllers/LocaleController.php:168 +#: application/forms/SmartBlockCriteria.php:120 +#: application/forms/SmartBlockCriteria.php:139 +#: application/models/Block.php:1490 application/models/Block.php:1586 msgid "is greater than" msgstr "大于" -#: legacy/application/controllers/LocaleController.php:172 -#: legacy/application/forms/SmartBlockCriteria.php:116 -#: legacy/application/forms/SmartBlockCriteria.php:135 -#: legacy/application/models/Block.php:1482 -#: legacy/application/models/Block.php:1582 +#: application/controllers/LocaleController.php:169 +#: application/forms/SmartBlockCriteria.php:121 +#: application/forms/SmartBlockCriteria.php:140 +#: application/models/Block.php:1491 application/models/Block.php:1587 msgid "is less than" msgstr "小于" -#: legacy/application/controllers/LocaleController.php:173 -#: legacy/application/forms/SmartBlockCriteria.php:117 -#: legacy/application/forms/SmartBlockCriteria.php:136 -#: legacy/application/models/Block.php:1483 -#: legacy/application/models/Block.php:1583 +#: application/controllers/LocaleController.php:170 +#: application/forms/SmartBlockCriteria.php:122 +#: application/forms/SmartBlockCriteria.php:141 +#: application/models/Block.php:1492 application/models/Block.php:1588 msgid "is in the range" msgstr "处于" -#: legacy/application/controllers/LocaleController.php:175 -#: legacy/application/forms/SmartBlockCriteria.php:571 +#: application/controllers/LocaleController.php:172 +#: application/forms/SmartBlockCriteria.php:576 msgid "Generate" msgstr "开始生成" -#: legacy/application/controllers/LocaleController.php:177 +#: application/controllers/LocaleController.php:174 msgid "Choose Storage Folder" msgstr "选择存储文件夹" -#: legacy/application/controllers/LocaleController.php:178 +#: application/controllers/LocaleController.php:175 msgid "Choose Folder to Watch" msgstr "选择监控的文件夹" -#: legacy/application/controllers/LocaleController.php:180 +#: application/controllers/LocaleController.php:176 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" @@ -2495,2855 +1605,2301 @@ msgstr "" "确定更改存储路径?\n" "这项操作将从媒体库中删除所有文件!" -#: legacy/application/controllers/LocaleController.php:182 +#: application/controllers/LocaleController.php:177 +msgid "Manage Media Folders" +msgstr "管理媒体文件夹" + +#: application/controllers/LocaleController.php:178 msgid "Are you sure you want to remove the watched folder?" msgstr "确定取消该文件夹的监控?" -#: legacy/application/controllers/LocaleController.php:183 +#: application/controllers/LocaleController.php:179 msgid "This path is currently not accessible." msgstr "指定的路径无法访问。" -#: legacy/application/controllers/LocaleController.php:185 +#: application/controllers/LocaleController.php:181 #, php-format msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided." msgstr "某些类型的输出流需要第三方软件的设置,具体步骤如下:%sAAC+%s 和 %sOpus%s。" -#: legacy/application/controllers/LocaleController.php:186 +#: application/controllers/LocaleController.php:182 msgid "Connected to the streaming server" msgstr "流服务器已连接" -#: legacy/application/controllers/LocaleController.php:187 +#: application/controllers/LocaleController.php:183 msgid "The stream is disabled" msgstr "输出流已禁用" -#: legacy/application/controllers/LocaleController.php:188 -#: legacy/application/forms/StreamSettingSubForm.php:191 +#: application/controllers/LocaleController.php:184 +#: application/forms/StreamSettingSubForm.php:207 msgid "Getting information from the server..." msgstr "从服务器加载中..." -#: legacy/application/controllers/LocaleController.php:189 +#: application/controllers/LocaleController.php:185 msgid "Can not connect to the streaming server" msgstr "无法连接流服务器" -#: legacy/application/controllers/LocaleController.php:191 +#: application/controllers/LocaleController.php:186 #, php-format msgid "If %s is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." msgstr "" -#: legacy/application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:187 #, php-format msgid "For more details, please read the %s%s Manual%s" msgstr "" -#: legacy/application/controllers/LocaleController.php:194 +#: application/controllers/LocaleController.php:188 msgid "Check this option to enable metadata for OGG streams (stream metadata is the track title, artist, and show name that is displayed in an audio player). VLC and mplayer have a serious bug when playing an OGG/VORBIS stream that has metadata information enabled: they will disconnect from the stream after every song. If you are using an OGG stream and your listeners do not require support for these audio players, then feel free to enable this option." msgstr "勾选此项会启用OGG格式流媒体的元数据(流的元数据包括歌曲名,歌手/作者,节目名,这些都会显示在音频播放器中。)VLC和mplayer有个已知的问题,他们在播放OGG/VORBIS媒体流时,如果该流已启用元数据,那么在每首歌的间隙都会断开流。所以,如果你使用OGG媒体流,同时你的听众不使用上述媒体播放器的话,你可以随意地勾选此项。" -#: legacy/application/controllers/LocaleController.php:195 +#: application/controllers/LocaleController.php:189 msgid "Check this box to automatically switch off Master/Show source upon source disconnection." msgstr "勾选此项后,在输入流断开时,主输入源和节目定制输入源将会自动切换为关闭状态。" -#: legacy/application/controllers/LocaleController.php:196 +#: application/controllers/LocaleController.php:190 msgid "Check this box to automatically switch on Master/Show source upon source connection." msgstr "勾选此项后,在输入流连接上时,主输入源和节目定制输入源将会自动切换到开启状态。" -#: legacy/application/controllers/LocaleController.php:197 +#: application/controllers/LocaleController.php:191 msgid "If your Icecast server expects a username of 'source', this field can be left blank." msgstr "如果你的Icecast服务器所要求的用户名是‘source’,那么当前项可以留空。" -#: legacy/application/controllers/LocaleController.php:198 -#: legacy/application/controllers/LocaleController.php:208 +#: application/controllers/LocaleController.php:192 +#: application/controllers/LocaleController.php:202 msgid "If your live streaming client does not ask for a username, this field should be 'source'." msgstr "如果你的流客户端不需要用户名,那么当前项可以留空" -#: legacy/application/controllers/LocaleController.php:199 +#: application/controllers/LocaleController.php:193 msgid "WARNING: This will restart your stream and may cause a short dropout for your listeners!" msgstr "" -#: legacy/application/controllers/LocaleController.php:200 +#: application/controllers/LocaleController.php:194 msgid "This is the admin username and password for Icecast/SHOUTcast to get listener statistics." msgstr "此处填写Icecast或者SHOUTcast的管理员用户名和密码,用于获取收听数据的统计。" -#: legacy/application/controllers/LocaleController.php:204 +#: application/controllers/LocaleController.php:198 msgid "Warning: You cannot change this field while the show is currently playing" msgstr "" -#: legacy/application/controllers/LocaleController.php:205 +#: application/controllers/LocaleController.php:199 msgid "No result found" msgstr "搜索无结果" -#: legacy/application/controllers/LocaleController.php:206 +#: application/controllers/LocaleController.php:200 msgid "This follows the same security pattern for the shows: only users assigned to the show can connect." msgstr "当前遵循与节目同样的安全模式:只有指定到当前节目的用户才能连接的上。" -#: legacy/application/controllers/LocaleController.php:207 +#: application/controllers/LocaleController.php:201 msgid "Specify custom authentication which will work only for this show." msgstr "所设置的自定义认证设置只对当前的节目有效。" -#: legacy/application/controllers/LocaleController.php:209 +#: application/controllers/LocaleController.php:203 msgid "The show instance doesn't exist anymore!" msgstr "此节目已不存在" -#: legacy/application/controllers/LocaleController.php:210 +#: application/controllers/LocaleController.php:204 msgid "Warning: Shows cannot be re-linked" msgstr "注意:节目取消绑定后无法再次绑定" -#: legacy/application/controllers/LocaleController.php:211 +#: application/controllers/LocaleController.php:205 msgid "By linking your repeating shows any media items scheduled in any repeat show will also get scheduled in the other repeat shows" msgstr "系列节目勾选绑定后,所有节目的内容都会一模一样,对任何未开始节目的更改都会影响到其他节目。" -#: legacy/application/controllers/LocaleController.php:212 +#: application/controllers/LocaleController.php:206 msgid "Timezone is set to the station timezone by default. Shows in the calendar will be displayed in your local time defined by the Interface Timezone in your user settings." msgstr "此时区设定的默认值是系统的时区设置。日程表中的节目时间则已用户定义的界面显示时区为准,两者可能有所不同。" -#: legacy/application/controllers/LocaleController.php:216 +#: application/controllers/LocaleController.php:210 msgid "Show" msgstr "节目" -#: legacy/application/controllers/LocaleController.php:217 +#: application/controllers/LocaleController.php:211 msgid "Show is empty" msgstr "节目内容为空" -#: legacy/application/controllers/LocaleController.php:218 +#: application/controllers/LocaleController.php:212 msgid "1m" msgstr "1分钟" -#: legacy/application/controllers/LocaleController.php:219 +#: application/controllers/LocaleController.php:213 msgid "5m" msgstr "5分钟" -#: legacy/application/controllers/LocaleController.php:220 +#: application/controllers/LocaleController.php:214 msgid "10m" msgstr "10分钟" -#: legacy/application/controllers/LocaleController.php:221 +#: application/controllers/LocaleController.php:215 msgid "15m" msgstr "15分钟" -#: legacy/application/controllers/LocaleController.php:222 +#: application/controllers/LocaleController.php:216 msgid "30m" msgstr "30分钟" -#: legacy/application/controllers/LocaleController.php:223 +#: application/controllers/LocaleController.php:217 msgid "60m" msgstr "60分钟" -#: legacy/application/controllers/LocaleController.php:225 +#: application/controllers/LocaleController.php:219 msgid "Retreiving data from the server..." msgstr "从服务器下载数据中..." -#: legacy/application/controllers/LocaleController.php:226 +#: application/controllers/LocaleController.php:220 msgid "This show has no scheduled content." msgstr "此节目没有安排内容。" -#: legacy/application/controllers/LocaleController.php:227 +#: application/controllers/LocaleController.php:221 msgid "This show is not completely filled with content." msgstr "节目内容只填充了一部分。" -#: legacy/application/controllers/LocaleController.php:231 +#: application/controllers/LocaleController.php:225 msgid "January" msgstr "一月" -#: legacy/application/controllers/LocaleController.php:232 +#: application/controllers/LocaleController.php:226 msgid "February" msgstr "二月" -#: legacy/application/controllers/LocaleController.php:233 +#: application/controllers/LocaleController.php:227 msgid "March" msgstr "三月" -#: legacy/application/controllers/LocaleController.php:234 +#: application/controllers/LocaleController.php:228 msgid "April" msgstr "四月" -#: legacy/application/controllers/LocaleController.php:235 -#: legacy/application/controllers/LocaleController.php:247 +#: application/controllers/LocaleController.php:229 +#: application/controllers/LocaleController.php:241 msgid "May" msgstr "五月" -#: legacy/application/controllers/LocaleController.php:236 +#: application/controllers/LocaleController.php:230 msgid "June" msgstr "六月" -#: legacy/application/controllers/LocaleController.php:237 +#: application/controllers/LocaleController.php:231 msgid "July" msgstr "七月" -#: legacy/application/controllers/LocaleController.php:238 +#: application/controllers/LocaleController.php:232 msgid "August" msgstr "八月" -#: legacy/application/controllers/LocaleController.php:239 +#: application/controllers/LocaleController.php:233 msgid "September" msgstr "九月" -#: legacy/application/controllers/LocaleController.php:240 +#: application/controllers/LocaleController.php:234 msgid "October" msgstr "十月" -#: legacy/application/controllers/LocaleController.php:241 +#: application/controllers/LocaleController.php:235 msgid "November" msgstr "十一月" -#: legacy/application/controllers/LocaleController.php:242 +#: application/controllers/LocaleController.php:236 msgid "December" msgstr "十二月" -#: legacy/application/controllers/LocaleController.php:243 +#: application/controllers/LocaleController.php:237 msgid "Jan" msgstr "一月" -#: legacy/application/controllers/LocaleController.php:244 +#: application/controllers/LocaleController.php:238 msgid "Feb" msgstr "二月" -#: legacy/application/controllers/LocaleController.php:245 +#: application/controllers/LocaleController.php:239 msgid "Mar" msgstr "三月" -#: legacy/application/controllers/LocaleController.php:246 +#: application/controllers/LocaleController.php:240 msgid "Apr" msgstr "四月" -#: legacy/application/controllers/LocaleController.php:248 +#: application/controllers/LocaleController.php:242 msgid "Jun" msgstr "六月" -#: legacy/application/controllers/LocaleController.php:249 +#: application/controllers/LocaleController.php:243 msgid "Jul" msgstr "七月" -#: legacy/application/controllers/LocaleController.php:250 +#: application/controllers/LocaleController.php:244 msgid "Aug" msgstr "八月" -#: legacy/application/controllers/LocaleController.php:251 +#: application/controllers/LocaleController.php:245 msgid "Sep" msgstr "九月" -#: legacy/application/controllers/LocaleController.php:252 +#: application/controllers/LocaleController.php:246 msgid "Oct" msgstr "十月" -#: legacy/application/controllers/LocaleController.php:253 +#: application/controllers/LocaleController.php:247 msgid "Nov" msgstr "十一月" -#: legacy/application/controllers/LocaleController.php:254 +#: application/controllers/LocaleController.php:248 msgid "Dec" msgstr "十二月" -#: legacy/application/controllers/LocaleController.php:255 +#: application/controllers/LocaleController.php:249 msgid "Today" msgstr "" -#: legacy/application/controllers/LocaleController.php:256 +#: application/controllers/LocaleController.php:250 msgid "Day" msgstr "" -#: legacy/application/controllers/LocaleController.php:257 +#: application/controllers/LocaleController.php:251 msgid "Week" msgstr "" -#: legacy/application/controllers/LocaleController.php:258 +#: application/controllers/LocaleController.php:252 msgid "Month" msgstr "" -#: legacy/application/controllers/LocaleController.php:259 -#: legacy/application/forms/GeneralPreferences.php:218 +#: application/controllers/LocaleController.php:253 +#: application/forms/GeneralPreferences.php:233 msgid "Sunday" msgstr "周日" -#: legacy/application/controllers/LocaleController.php:260 -#: legacy/application/forms/GeneralPreferences.php:219 +#: application/controllers/LocaleController.php:254 +#: application/forms/GeneralPreferences.php:234 msgid "Monday" msgstr "周一" -#: legacy/application/controllers/LocaleController.php:261 -#: legacy/application/forms/GeneralPreferences.php:220 +#: application/controllers/LocaleController.php:255 +#: application/forms/GeneralPreferences.php:235 msgid "Tuesday" msgstr "周二" -#: legacy/application/controllers/LocaleController.php:262 -#: legacy/application/forms/GeneralPreferences.php:221 +#: application/controllers/LocaleController.php:256 +#: application/forms/GeneralPreferences.php:236 msgid "Wednesday" msgstr "周三" -#: legacy/application/controllers/LocaleController.php:263 -#: legacy/application/forms/GeneralPreferences.php:222 +#: application/controllers/LocaleController.php:257 +#: application/forms/GeneralPreferences.php:237 msgid "Thursday" msgstr "周四" -#: legacy/application/controllers/LocaleController.php:264 -#: legacy/application/forms/GeneralPreferences.php:223 +#: application/controllers/LocaleController.php:258 +#: application/forms/GeneralPreferences.php:238 msgid "Friday" msgstr "周五" -#: legacy/application/controllers/LocaleController.php:265 -#: legacy/application/forms/GeneralPreferences.php:224 +#: application/controllers/LocaleController.php:259 +#: application/forms/GeneralPreferences.php:239 msgid "Saturday" msgstr "周六" -#: legacy/application/controllers/LocaleController.php:266 -#: legacy/application/forms/AddShowRepeats.php:35 +#: application/controllers/LocaleController.php:260 +#: application/forms/AddShowRepeats.php:33 msgid "Sun" msgstr "周日" -#: legacy/application/controllers/LocaleController.php:267 -#: legacy/application/forms/AddShowRepeats.php:36 +#: application/controllers/LocaleController.php:261 +#: application/forms/AddShowRepeats.php:34 msgid "Mon" msgstr "周一" -#: legacy/application/controllers/LocaleController.php:268 -#: legacy/application/forms/AddShowRepeats.php:37 +#: application/controllers/LocaleController.php:262 +#: application/forms/AddShowRepeats.php:35 msgid "Tue" msgstr "周二" -#: legacy/application/controllers/LocaleController.php:269 -#: legacy/application/forms/AddShowRepeats.php:38 +#: application/controllers/LocaleController.php:263 +#: application/forms/AddShowRepeats.php:36 msgid "Wed" msgstr "周三" -#: legacy/application/controllers/LocaleController.php:270 -#: legacy/application/forms/AddShowRepeats.php:39 +#: application/controllers/LocaleController.php:264 +#: application/forms/AddShowRepeats.php:37 msgid "Thu" msgstr "周四" -#: legacy/application/controllers/LocaleController.php:271 -#: legacy/application/forms/AddShowRepeats.php:40 +#: application/controllers/LocaleController.php:265 +#: application/forms/AddShowRepeats.php:38 msgid "Fri" msgstr "周五" -#: legacy/application/controllers/LocaleController.php:272 -#: legacy/application/forms/AddShowRepeats.php:41 +#: application/controllers/LocaleController.php:266 +#: application/forms/AddShowRepeats.php:39 msgid "Sat" msgstr "周六" -#: legacy/application/controllers/LocaleController.php:273 +#: application/controllers/LocaleController.php:267 msgid "Shows longer than their scheduled time will be cut off by a following show." msgstr "超出的节目内容将被随后的节目所取代。" -#: legacy/application/controllers/LocaleController.php:274 +#: application/controllers/LocaleController.php:268 msgid "Cancel Current Show?" msgstr "取消当前的节目?" -#: legacy/application/controllers/LocaleController.php:275 -#: legacy/application/controllers/LocaleController.php:324 +#: application/controllers/LocaleController.php:269 +#: application/controllers/LocaleController.php:318 msgid "Stop recording current show?" msgstr "停止录制当前的节目?" -#: legacy/application/controllers/LocaleController.php:276 +#: application/controllers/LocaleController.php:270 msgid "Ok" msgstr "确定" -#: legacy/application/controllers/LocaleController.php:277 +#: application/controllers/LocaleController.php:271 msgid "Contents of Show" msgstr "浏览节目内容" -#: legacy/application/controllers/LocaleController.php:280 +#: application/controllers/LocaleController.php:274 msgid "Remove all content?" msgstr "清空全部内容?" -#: legacy/application/controllers/LocaleController.php:282 +#: application/controllers/LocaleController.php:276 msgid "Delete selected item(s)?" msgstr "删除选定的项目?" -#: legacy/application/controllers/LocaleController.php:284 +#: application/controllers/LocaleController.php:277 +msgid "Start" +msgstr "开始" + +#: application/controllers/LocaleController.php:278 msgid "End" msgstr "结束" -#: legacy/application/controllers/LocaleController.php:285 +#: application/controllers/LocaleController.php:279 msgid "Duration" msgstr "时长" -#: legacy/application/controllers/LocaleController.php:286 +#: application/controllers/LocaleController.php:280 msgid "Filtering out " msgstr "" -#: legacy/application/controllers/LocaleController.php:287 +#: application/controllers/LocaleController.php:281 msgid " of " msgstr "" -#: legacy/application/controllers/LocaleController.php:288 +#: application/controllers/LocaleController.php:282 msgid " records" msgstr "" -#: legacy/application/controllers/LocaleController.php:289 +#: application/controllers/LocaleController.php:283 msgid "There are no shows scheduled during the specified time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:299 +#: application/controllers/LocaleController.php:289 +#: application/forms/SmartBlockCriteria.php:63 +#: application/models/Block.php:1451 application/models/Block.php:1547 +msgid "Cue In" +msgstr "切入" + +#: application/controllers/LocaleController.php:290 +#: application/forms/SmartBlockCriteria.php:64 +#: application/models/Block.php:1452 application/models/Block.php:1548 +msgid "Cue Out" +msgstr "切出" + +#: application/controllers/LocaleController.php:291 +msgid "Fade In" +msgstr "淡入" + +#: application/controllers/LocaleController.php:292 +msgid "Fade Out" +msgstr "淡出" + +#: application/controllers/LocaleController.php:293 msgid "Show Empty" msgstr "节目无内容" -#: legacy/application/controllers/LocaleController.php:300 +#: application/controllers/LocaleController.php:294 msgid "Recording From Line In" msgstr "从线路输入录制" -#: legacy/application/controllers/LocaleController.php:301 +#: application/controllers/LocaleController.php:295 msgid "Track preview" msgstr "试听媒体" -#: legacy/application/controllers/LocaleController.php:305 +#: application/controllers/LocaleController.php:299 msgid "Cannot schedule outside a show." msgstr "没有指定节目,无法凭空安排内容。" -#: legacy/application/controllers/LocaleController.php:306 +#: application/controllers/LocaleController.php:300 msgid "Moving 1 Item" msgstr "移动1个项目" -#: legacy/application/controllers/LocaleController.php:307 +#: application/controllers/LocaleController.php:301 #, php-format msgid "Moving %s Items" msgstr "移动%s个项目" -#: legacy/application/controllers/LocaleController.php:310 +#: application/controllers/LocaleController.php:302 +#: application/forms/AddTracktype.php:60 application/forms/AddUser.php:108 +#: application/forms/EditAudioMD.php:297 application/forms/EditHistory.php:131 +#: application/forms/PasswordChange.php:41 application/forms/Preferences.php:37 +msgid "Save" +msgstr "保存" + +#: application/controllers/LocaleController.php:303 +#: application/controllers/LocaleController.php:327 +#: application/forms/EditAudioMD.php:287 application/forms/EditHistory.php:141 +msgid "Cancel" +msgstr "取消" + +#: application/controllers/LocaleController.php:304 msgid "Fade Editor" msgstr "淡入淡出编辑器" -#: legacy/application/controllers/LocaleController.php:311 +#: application/controllers/LocaleController.php:305 msgid "Cue Editor" msgstr "切入切出编辑器" -#: legacy/application/controllers/LocaleController.php:312 +#: application/controllers/LocaleController.php:306 msgid "Waveform features are available in a browser supporting the Web Audio API" msgstr "想要启用波形图功能,需要支持Web Audio API的浏览器。" -#: legacy/application/controllers/LocaleController.php:315 +#: application/controllers/LocaleController.php:309 msgid "Select all" msgstr "全选" -#: legacy/application/controllers/LocaleController.php:316 +#: application/controllers/LocaleController.php:310 msgid "Select none" msgstr "全不选" -#: legacy/application/controllers/LocaleController.php:317 +#: application/controllers/LocaleController.php:311 msgid "Trim overbooked shows" msgstr "" -#: legacy/application/controllers/LocaleController.php:318 +#: application/controllers/LocaleController.php:312 msgid "Remove selected scheduled items" msgstr "移除所选的项目" -#: legacy/application/controllers/LocaleController.php:319 +#: application/controllers/LocaleController.php:313 msgid "Jump to the current playing track" msgstr "跳转到当前播放的项目" -#: legacy/application/controllers/LocaleController.php:320 +#: application/controllers/LocaleController.php:314 msgid "Jump to Current" msgstr "" -#: legacy/application/controllers/LocaleController.php:321 +#: application/controllers/LocaleController.php:315 msgid "Cancel current show" msgstr "取消当前的节目" -#: legacy/application/controllers/LocaleController.php:326 +#: application/controllers/LocaleController.php:320 msgid "Open library to add or remove content" msgstr "打开媒体库,添加或者删除节目内容" -#: legacy/application/controllers/LocaleController.php:327 +#: application/controllers/LocaleController.php:321 msgid "Add / Remove Content" msgstr "添加 / 删除内容" -#: legacy/application/controllers/LocaleController.php:330 +#: application/controllers/LocaleController.php:323 +msgid "in use" +msgstr "使用中" + +#: application/controllers/LocaleController.php:324 msgid "Disk" msgstr "磁盘" -#: legacy/application/controllers/LocaleController.php:332 +#: application/controllers/LocaleController.php:326 msgid "Look in" msgstr "查询" -#: legacy/application/controllers/LocaleController.php:334 +#: application/controllers/LocaleController.php:328 msgid "Open" msgstr "打开" -#: legacy/application/controllers/LocaleController.php:336 -#: legacy/application/forms/AddUser.php:101 +#: application/controllers/LocaleController.php:330 +#: application/forms/AddUser.php:100 msgid "Admin" msgstr "系统管理员" -#: legacy/application/controllers/LocaleController.php:337 -#: legacy/application/forms/AddUser.php:99 +#: application/controllers/LocaleController.php:331 +#: application/forms/AddUser.php:98 msgid "DJ" msgstr "节目编辑" -#: legacy/application/controllers/LocaleController.php:338 -#: legacy/application/forms/AddUser.php:100 +#: application/controllers/LocaleController.php:332 +#: application/forms/AddUser.php:99 msgid "Program Manager" msgstr "节目主管" -#: legacy/application/controllers/LocaleController.php:339 -#: legacy/application/forms/AddUser.php:98 +#: application/controllers/LocaleController.php:333 +#: application/forms/AddUser.php:97 msgid "Guest" msgstr "游客" -#: legacy/application/controllers/LocaleController.php:340 +#: application/controllers/LocaleController.php:334 msgid "Guests can do the following:" msgstr "游客的权限包括:" -#: legacy/application/controllers/LocaleController.php:341 +#: application/controllers/LocaleController.php:335 msgid "View schedule" msgstr "显示节目日程" -#: legacy/application/controllers/LocaleController.php:342 +#: application/controllers/LocaleController.php:336 msgid "View show content" msgstr "显示节目内容" -#: legacy/application/controllers/LocaleController.php:343 +#: application/controllers/LocaleController.php:337 msgid "DJs can do the following:" msgstr "节目编辑的权限包括:" -#: legacy/application/controllers/LocaleController.php:344 +#: application/controllers/LocaleController.php:338 msgid "Manage assigned show content" msgstr "为指派的节目管理节目内容" -#: legacy/application/controllers/LocaleController.php:345 +#: application/controllers/LocaleController.php:339 msgid "Import media files" msgstr "导入媒体文件" -#: legacy/application/controllers/LocaleController.php:346 +#: application/controllers/LocaleController.php:340 msgid "Create playlists, smart blocks, and webstreams" msgstr "创建播放列表,智能模块和网络流媒体" -#: legacy/application/controllers/LocaleController.php:347 +#: application/controllers/LocaleController.php:341 msgid "Manage their own library content" msgstr "管理媒体库中属于自己的内容" -#: legacy/application/controllers/LocaleController.php:348 +#: application/controllers/LocaleController.php:342 msgid "Program Managers can do the following:" msgstr "" -#: legacy/application/controllers/LocaleController.php:349 +#: application/controllers/LocaleController.php:343 msgid "View and manage show content" msgstr "查看和管理节目内容" -#: legacy/application/controllers/LocaleController.php:350 +#: application/controllers/LocaleController.php:344 msgid "Schedule shows" msgstr "安排节目日程" -#: legacy/application/controllers/LocaleController.php:351 +#: application/controllers/LocaleController.php:345 msgid "Manage all library content" msgstr "管理媒体库的所有内容" -#: legacy/application/controllers/LocaleController.php:352 +#: application/controllers/LocaleController.php:346 msgid "Admins can do the following:" msgstr "管理员的权限包括:" -#: legacy/application/controllers/LocaleController.php:353 +#: application/controllers/LocaleController.php:347 msgid "Manage preferences" msgstr "属性管理" -#: legacy/application/controllers/LocaleController.php:354 +#: application/controllers/LocaleController.php:348 msgid "Manage users" msgstr "管理用户" -#: legacy/application/controllers/LocaleController.php:355 +#: application/controllers/LocaleController.php:349 msgid "Manage watched folders" msgstr "管理监控文件夹" -#: legacy/application/controllers/LocaleController.php:356 +#: application/controllers/LocaleController.php:350 msgid "Send support feedback" msgstr "提交反馈意见" -#: legacy/application/controllers/LocaleController.php:357 +#: application/controllers/LocaleController.php:351 msgid "View system status" msgstr "显示系统状态" -#: legacy/application/controllers/LocaleController.php:358 +#: application/controllers/LocaleController.php:352 msgid "Access playout history" msgstr "查看播放历史" -#: legacy/application/controllers/LocaleController.php:359 +#: application/controllers/LocaleController.php:353 msgid "View listener stats" msgstr "显示收听统计数据" -#: legacy/application/controllers/LocaleController.php:361 +#: application/controllers/LocaleController.php:355 msgid "Show / hide columns" msgstr "显示/隐藏栏" -#: legacy/application/controllers/LocaleController.php:362 +#: application/controllers/LocaleController.php:356 msgid "Columns" msgstr "" -#: legacy/application/controllers/LocaleController.php:364 +#: application/controllers/LocaleController.php:358 msgid "From {from} to {to}" msgstr "从{from}到{to}" -#: legacy/application/controllers/LocaleController.php:365 +#: application/controllers/LocaleController.php:359 msgid "kbps" msgstr "千比特每秒" -#: legacy/application/controllers/LocaleController.php:366 +#: application/controllers/LocaleController.php:360 msgid "yyyy-mm-dd" msgstr "年-月-日" -#: legacy/application/controllers/LocaleController.php:367 +#: application/controllers/LocaleController.php:361 msgid "hh:mm:ss.t" msgstr "时:分:秒" -#: legacy/application/controllers/LocaleController.php:368 +#: application/controllers/LocaleController.php:362 msgid "kHz" msgstr "千赫兹" -#: legacy/application/controllers/LocaleController.php:371 +#: application/controllers/LocaleController.php:365 msgid "Su" msgstr "周天" -#: legacy/application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:366 msgid "Mo" msgstr "周一" -#: legacy/application/controllers/LocaleController.php:373 +#: application/controllers/LocaleController.php:367 msgid "Tu" msgstr "周二" -#: legacy/application/controllers/LocaleController.php:374 +#: application/controllers/LocaleController.php:368 msgid "We" msgstr "周三" -#: legacy/application/controllers/LocaleController.php:375 +#: application/controllers/LocaleController.php:369 msgid "Th" msgstr "周四" -#: legacy/application/controllers/LocaleController.php:376 +#: application/controllers/LocaleController.php:370 msgid "Fr" msgstr "周五" -#: legacy/application/controllers/LocaleController.php:377 +#: application/controllers/LocaleController.php:371 msgid "Sa" msgstr "周六" -#: legacy/application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:372 +#: application/controllers/LocaleController.php:400 +msgid "Close" +msgstr "关闭" + +#: application/controllers/LocaleController.php:374 msgid "Hour" msgstr "小时" -#: legacy/application/controllers/LocaleController.php:381 +#: application/controllers/LocaleController.php:375 msgid "Minute" msgstr "分钟" -#: legacy/application/controllers/LocaleController.php:382 +#: application/controllers/LocaleController.php:376 msgid "Done" msgstr "设定" -#: legacy/application/controllers/LocaleController.php:385 +#: application/controllers/LocaleController.php:379 msgid "Select files" msgstr "选择文件" -#: legacy/application/controllers/LocaleController.php:386 -#: legacy/application/controllers/LocaleController.php:387 +#: application/controllers/LocaleController.php:380 +#: application/controllers/LocaleController.php:381 msgid "Add files to the upload queue and click the start button." msgstr "添加需要上传的文件到传输队列中,然后点击开始上传。" -#: legacy/application/controllers/LocaleController.php:390 +#: application/controllers/LocaleController.php:384 msgid "Add Files" msgstr "添加文件" -#: legacy/application/controllers/LocaleController.php:391 +#: application/controllers/LocaleController.php:385 msgid "Stop Upload" msgstr "停止上传" -#: legacy/application/controllers/LocaleController.php:392 +#: application/controllers/LocaleController.php:386 msgid "Start upload" msgstr "开始上传" -#: legacy/application/controllers/LocaleController.php:393 +#: application/controllers/LocaleController.php:387 msgid "Add files" msgstr "添加文件" -#: legacy/application/controllers/LocaleController.php:394 +#: application/controllers/LocaleController.php:388 #, php-format msgid "Uploaded %d/%d files" msgstr "已经上传%d/%d个文件" -#: legacy/application/controllers/LocaleController.php:395 +#: application/controllers/LocaleController.php:389 msgid "N/A" msgstr "未知" -#: legacy/application/controllers/LocaleController.php:396 +#: application/controllers/LocaleController.php:390 msgid "Drag files here." msgstr "拖拽文件到此处。" -#: legacy/application/controllers/LocaleController.php:397 +#: application/controllers/LocaleController.php:391 msgid "File extension error." msgstr "文件后缀名出错。" -#: legacy/application/controllers/LocaleController.php:398 +#: application/controllers/LocaleController.php:392 msgid "File size error." msgstr "文件大小出错。" -#: legacy/application/controllers/LocaleController.php:399 +#: application/controllers/LocaleController.php:393 msgid "File count error." msgstr "发生文件统计错误。" -#: legacy/application/controllers/LocaleController.php:400 +#: application/controllers/LocaleController.php:394 msgid "Init error." msgstr "发生初始化错误。" -#: legacy/application/controllers/LocaleController.php:401 +#: application/controllers/LocaleController.php:395 msgid "HTTP Error." msgstr "发生HTTP类型的错误" -#: legacy/application/controllers/LocaleController.php:402 +#: application/controllers/LocaleController.php:396 msgid "Security error." msgstr "发生安全性错误。" -#: legacy/application/controllers/LocaleController.php:403 +#: application/controllers/LocaleController.php:397 msgid "Generic error." msgstr "发生通用类型的错误。" -#: legacy/application/controllers/LocaleController.php:404 +#: application/controllers/LocaleController.php:398 msgid "IO error." msgstr "输入输出错误。" -#: legacy/application/controllers/LocaleController.php:405 +#: application/controllers/LocaleController.php:399 #, php-format msgid "File: %s" msgstr "文件:%s" -#: legacy/application/controllers/LocaleController.php:407 +#: application/controllers/LocaleController.php:401 #, php-format msgid "%d files queued" msgstr "队列中有%d个文件" -#: legacy/application/controllers/LocaleController.php:408 +#: application/controllers/LocaleController.php:402 msgid "File: %f, size: %s, max file size: %m" msgstr "文件:%f,大小:%s,最大的文件大小:%m" -#: legacy/application/controllers/LocaleController.php:409 +#: application/controllers/LocaleController.php:403 msgid "Upload URL might be wrong or doesn't exist" msgstr "用于上传的地址有误或者不存在" -#: legacy/application/controllers/LocaleController.php:410 +#: application/controllers/LocaleController.php:404 msgid "Error: File too large: " msgstr "错误:文件过大:" -#: legacy/application/controllers/LocaleController.php:411 +#: application/controllers/LocaleController.php:405 msgid "Error: Invalid file extension: " msgstr "错误:无效的文件后缀名:" -#: legacy/application/controllers/LocaleController.php:414 +#: application/controllers/LocaleController.php:407 +msgid "Set Default" +msgstr "设为默认" + +#: application/controllers/LocaleController.php:408 msgid "Create Entry" msgstr "创建项目" -#: legacy/application/controllers/LocaleController.php:415 +#: application/controllers/LocaleController.php:409 msgid "Edit History Record" msgstr "编辑历史记录" -#: legacy/application/controllers/LocaleController.php:418 +#: application/controllers/LocaleController.php:410 +#: application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "无节目" + +#: application/controllers/LocaleController.php:412 #, php-format msgid "Copied %s row%s to the clipboard" msgstr "复制%s行%s到剪贴板" -#: legacy/application/controllers/LocaleController.php:419 +#: application/controllers/LocaleController.php:413 #, php-format msgid "%sPrint view%sPlease use your browser's print function to print this table. Press escape when finished." msgstr "%s打印预览%s请使用浏览器的打印功能进行打印。按下Esc键可以退出当前状态。" -#: legacy/application/controllers/LocaleController.php:420 +#: application/controllers/LocaleController.php:414 msgid "New Show" msgstr "" -#: legacy/application/controllers/LocaleController.php:421 +#: application/controllers/LocaleController.php:415 msgid "New Log Entry" msgstr "" -#: legacy/application/controllers/LocaleController.php:423 +#: application/controllers/LocaleController.php:417 msgid "No data available in table" msgstr "" -#: legacy/application/controllers/LocaleController.php:424 +#: application/controllers/LocaleController.php:418 msgid "(filtered from _MAX_ total entries)" msgstr "" -#: legacy/application/controllers/LocaleController.php:430 +#: application/controllers/LocaleController.php:424 msgid "First" msgstr "" -#: legacy/application/controllers/LocaleController.php:431 +#: application/controllers/LocaleController.php:425 msgid "Last" msgstr "" -#: legacy/application/controllers/LocaleController.php:433 +#: application/controllers/LocaleController.php:426 +msgid "Next" +msgstr "" + +#: application/controllers/LocaleController.php:427 msgid "Previous" msgstr "" -#: legacy/application/controllers/LocaleController.php:434 +#: application/controllers/LocaleController.php:428 msgid "Search:" msgstr "" -#: legacy/application/controllers/LocaleController.php:435 -#: legacy/application/controllers/LocaleController.php:448 +#: application/controllers/LocaleController.php:429 +#: application/controllers/LocaleController.php:442 msgid "No matching records found" msgstr "" -#: legacy/application/controllers/LocaleController.php:436 +#: application/controllers/LocaleController.php:430 msgid "Drag tracks here from the library" msgstr "" -#: legacy/application/controllers/LocaleController.php:437 +#: application/controllers/LocaleController.php:431 msgid "No tracks were played during the selected time period." msgstr "" -#: legacy/application/controllers/LocaleController.php:439 +#: application/controllers/LocaleController.php:432 +msgid "Unpublish" +msgstr "" + +#: application/controllers/LocaleController.php:433 msgid "No matching results found." msgstr "" -#: legacy/application/controllers/LocaleController.php:443 +#: application/controllers/LocaleController.php:434 +msgid "Author" +msgstr "" + +#: application/controllers/LocaleController.php:435 +#: application/forms/SmartBlockCriteria.php:65 +#: application/forms/StreamSettingSubForm.php:159 +#: application/models/Block.php:1453 application/models/Block.php:1549 +msgid "Description" +msgstr "描述" + +#: application/controllers/LocaleController.php:436 +msgid "Link" +msgstr "" + +#: application/controllers/LocaleController.php:437 msgid "Publication Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:444 +#: application/controllers/LocaleController.php:438 msgid "Import Status" msgstr "" -#: legacy/application/controllers/LocaleController.php:445 +#: application/controllers/LocaleController.php:439 msgid "Actions" msgstr "" -#: legacy/application/controllers/LocaleController.php:446 +#: application/controllers/LocaleController.php:440 msgid "Delete from Library" msgstr "" -#: legacy/application/controllers/LocaleController.php:447 +#: application/controllers/LocaleController.php:441 msgid "Successfully imported" msgstr "" -#: legacy/application/controllers/LocaleController.php:449 +#: application/controllers/LocaleController.php:443 msgid "Show _MENU_" msgstr "" -#: legacy/application/controllers/LocaleController.php:450 +#: application/controllers/LocaleController.php:444 msgid "Show _MENU_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:451 +#: application/controllers/LocaleController.php:445 msgid "Showing _START_ to _END_ of _TOTAL_ entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:452 +#: application/controllers/LocaleController.php:446 msgid "Showing _START_ to _END_ of _TOTAL_ tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:453 +#: application/controllers/LocaleController.php:447 msgid "Showing _START_ to _END_ of _TOTAL_ track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:454 +#: application/controllers/LocaleController.php:448 msgid "Showing _START_ to _END_ of _TOTAL_ users" msgstr "" -#: legacy/application/controllers/LocaleController.php:455 +#: application/controllers/LocaleController.php:449 msgid "Showing 0 to 0 of 0 entries" msgstr "" -#: legacy/application/controllers/LocaleController.php:456 +#: application/controllers/LocaleController.php:450 msgid "Showing 0 to 0 of 0 tracks" msgstr "" -#: legacy/application/controllers/LocaleController.php:457 +#: application/controllers/LocaleController.php:451 msgid "Showing 0 to 0 of 0 track types" msgstr "" -#: legacy/application/controllers/LocaleController.php:458 +#: application/controllers/LocaleController.php:452 msgid "(filtered from _MAX_ total track types)" msgstr "" -#: legacy/application/controllers/LocaleController.php:460 +#: application/controllers/LocaleController.php:454 msgid "Are you sure you want to delete this tracktype?" msgstr "" -#: legacy/application/controllers/LocaleController.php:461 +#: application/controllers/LocaleController.php:455 msgid "No track types were found." msgstr "" -#: legacy/application/controllers/LocaleController.php:462 +#: application/controllers/LocaleController.php:456 msgid "No track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:463 +#: application/controllers/LocaleController.php:457 msgid "No matching track types found" msgstr "" -#: legacy/application/controllers/LocaleController.php:464 -#: legacy/application/forms/GeneralPreferences.php:126 -#: legacy/application/forms/GeneralPreferences.php:141 -#: legacy/application/forms/GeneralPreferences.php:159 -#: legacy/application/forms/AddTracktype.php:51 +#: application/controllers/LocaleController.php:458 +#: application/forms/AddTracktype.php:51 +#: application/forms/GeneralPreferences.php:126 +#: application/forms/GeneralPreferences.php:141 +#: application/forms/GeneralPreferences.php:159 +#: application/forms/GeneralPreferences.php:218 msgid "Enabled" msgstr "启用" -#: legacy/application/controllers/LocaleController.php:465 -#: legacy/application/forms/GeneralPreferences.php:125 -#: legacy/application/forms/GeneralPreferences.php:140 -#: legacy/application/forms/GeneralPreferences.php:158 -#: legacy/application/forms/AddTracktype.php:50 +#: application/controllers/LocaleController.php:459 +#: application/forms/AddTracktype.php:50 +#: application/forms/GeneralPreferences.php:125 +#: application/forms/GeneralPreferences.php:140 +#: application/forms/GeneralPreferences.php:158 +#: application/forms/GeneralPreferences.php:217 msgid "Disabled" msgstr "禁用" -#: legacy/application/controllers/LocaleController.php:466 +#: application/controllers/LocaleController.php:460 msgid "Cancel upload" msgstr "" -#: legacy/application/controllers/LocaleController.php:467 +#: application/controllers/LocaleController.php:461 msgid "Type" msgstr "" -#: legacy/application/controllers/LocaleController.php:469 +#: application/controllers/LocaleController.php:462 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + +#: application/controllers/LocaleController.php:463 msgid "Podcast settings saved" msgstr "" -#: legacy/application/controllers/LocaleController.php:470 +#: application/controllers/LocaleController.php:464 msgid "Are you sure you want to delete this user?" msgstr "" -#: legacy/application/controllers/LocaleController.php:471 +#: application/controllers/LocaleController.php:465 msgid "Can't delete yourself!" msgstr "" -#: legacy/application/controllers/LocaleController.php:472 +#: application/controllers/LocaleController.php:466 msgid "You haven't published any episodes!" msgstr "" -#: legacy/application/controllers/LocaleController.php:473 +#: application/controllers/LocaleController.php:467 msgid "You can publish your uploaded content from the 'Tracks' view." msgstr "" -#: legacy/application/controllers/LocaleController.php:474 +#: application/controllers/LocaleController.php:468 msgid "Try it now" msgstr "" -#: legacy/application/controllers/LocaleController.php:475 +#: application/controllers/LocaleController.php:469 msgid "

If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.

If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.

" msgstr "" -#: legacy/application/controllers/LocaleController.php:476 +#: application/controllers/LocaleController.php:470 msgid "Playlist preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:478 +#: application/controllers/LocaleController.php:471 +msgid "Smart Block" +msgstr "" + +#: application/controllers/LocaleController.php:472 msgid "Webstream preview" msgstr "" -#: legacy/application/controllers/LocaleController.php:479 +#: application/controllers/LocaleController.php:473 msgid "You don't have permission to view the library." msgstr "" -#: legacy/application/controllers/LocaleController.php:480 -#: legacy/application/forms/AddShowWhen.php:24 +#: application/controllers/LocaleController.php:474 +#: application/forms/AddShowWhen.php:23 msgid "Now" msgstr "" -#: legacy/application/controllers/LocaleController.php:481 +#: application/controllers/LocaleController.php:475 msgid "Click 'New' to create one now." msgstr "" -#: legacy/application/controllers/LocaleController.php:482 +#: application/controllers/LocaleController.php:476 msgid "Click 'Upload' to add some now." msgstr "" -#: legacy/application/controllers/LocaleController.php:484 +#: application/controllers/LocaleController.php:477 +msgid "Feed URL" +msgstr "" + +#: application/controllers/LocaleController.php:478 msgid "Import Date" msgstr "" -#: legacy/application/controllers/LocaleController.php:485 +#: application/controllers/LocaleController.php:479 msgid "Add New Podcast" msgstr "" -#: legacy/application/controllers/LocaleController.php:486 +#: application/controllers/LocaleController.php:480 msgid "" "Cannot schedule outside a show.\n" "Try creating a show first." msgstr "" -#: legacy/application/controllers/LocaleController.php:487 +#: application/controllers/LocaleController.php:481 msgid "No files have been uploaded yet." msgstr "" -#: legacy/application/controllers/LocaleController.php:493 +#: application/controllers/LocaleController.php:487 msgid "On Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:494 +#: application/controllers/LocaleController.php:488 msgid "Off Air" msgstr "" -#: legacy/application/controllers/LocaleController.php:495 +#: application/controllers/LocaleController.php:489 msgid "Offline" msgstr "" -#: legacy/application/controllers/LocaleController.php:496 +#: application/controllers/LocaleController.php:490 msgid "Nothing scheduled" msgstr "" -#: legacy/application/controllers/LocaleController.php:497 +#: application/controllers/LocaleController.php:491 msgid "Click 'Add' to create one now." msgstr "" -#: legacy/application/controllers/ScheduleController.php:384 +#: application/controllers/LoginController.php:51 +msgid "Please enter your username and password." +msgstr "" + +#: application/controllers/LoginController.php:157 +msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." +msgstr "邮件发送失败。请检查邮件服务器设置,并确定设置无误。" + +#: application/controllers/LoginController.php:160 +msgid "That username or email address could not be found." +msgstr "" + +#: application/controllers/LoginController.php:163 +msgid "There was a problem with the username or email address you entered." +msgstr "" + +#: application/controllers/LoginController.php:242 +msgid "Wrong username or password provided. Please try again." +msgstr "用户名或密码错误,请重试。" + +#: application/controllers/PlaylistController.php:53 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "你所查看的%s已更改" + +#: application/controllers/PlaylistController.php:143 +msgid "You cannot add tracks to dynamic blocks." +msgstr "动态智能模块不能添加声音文件。" + +#: application/controllers/PlaylistController.php:164 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "你没有删除所选%s的权限。" + +#: application/controllers/PlaylistController.php:177 +msgid "You can only add tracks to smart block." +msgstr "智能模块只能添加媒体文件。" + +#: application/controllers/PlaylistController.php:195 +msgid "Untitled Playlist" +msgstr "未命名的播放列表" + +#: application/controllers/PlaylistController.php:197 +msgid "Untitled Smart Block" +msgstr "未命名的智能模块" + +#: application/controllers/PlaylistController.php:529 +msgid "Unknown Playlist" +msgstr "位置播放列表" + +#: application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "属性已更新。" + +#: application/controllers/PreferenceController.php:309 +msgid "Stream Setting Updated." +msgstr "流设置已更新。" + +#: application/controllers/PreferenceController.php:357 +msgid "path should be specified" +msgstr "请指定路径" + +#: application/controllers/PreferenceController.php:452 +msgid "Problem with Liquidsoap..." +msgstr "Liquidsoap出错..." + +#: application/controllers/PreferenceController.php:515 +msgid "Request method not accepted" +msgstr "" + +#: application/controllers/ScheduleController.php:395 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "节目%s是节目%s的重播,时间是%s" -#: legacy/application/services/PodcastService.php:161 -msgid "Auto-generated smartblock for podcast" +#: application/controllers/ShowbuilderController.php:138 +msgid "Select cursor" +msgstr "选择游标" + +#: application/controllers/ShowbuilderController.php:139 +msgid "Remove cursor" +msgstr "删除游标" + +#: application/controllers/ShowbuilderController.php:157 +msgid "show does not exist" +msgstr "节目不存在" + +#: application/controllers/TracktypeController.php:70 +msgid "Track Type added successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "录制文件不存在" - -#: legacy/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "查看录制文件的元数据" - -#: legacy/application/services/CalendarService.php:81 -msgid "Schedule Tracks" +#: application/controllers/TracktypeController.php:72 +msgid "Track Type updated successfully!" msgstr "" -#: legacy/application/services/CalendarService.php:106 -msgid "Clear Show" -msgstr "" +#: application/controllers/UserController.php:87 +msgid "User added successfully!" +msgstr "用户已添加成功!" -#: legacy/application/services/CalendarService.php:120 -#: legacy/application/services/CalendarService.php:125 -msgid "Cancel Show" -msgstr "" +#: application/controllers/UserController.php:89 +msgid "User updated successfully!" +msgstr "用于已成功更新!" -#: legacy/application/services/CalendarService.php:146 -#: legacy/application/services/CalendarService.php:165 -msgid "Edit Instance" -msgstr "" +#: application/controllers/UserController.php:189 +msgid "Settings updated successfully!" +msgstr "设置更新成功!" -#: legacy/application/services/CalendarService.php:158 -#: legacy/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "编辑节目" +#: application/controllers/WebstreamController.php:30 +#: application/controllers/WebstreamController.php:34 +msgid "Untitled Webstream" +msgstr "未命名的网络流媒体" -#: legacy/application/services/CalendarService.php:194 -msgid "Delete Instance" -msgstr "" +#: application/controllers/WebstreamController.php:157 +msgid "Webstream saved." +msgstr "网络流媒体已保存。" -#: legacy/application/services/CalendarService.php:200 -msgid "Delete Instance and All Following" -msgstr "" +#: application/controllers/WebstreamController.php:165 +msgid "Invalid form values." +msgstr "无效的表格内容。" -#: legacy/application/services/CalendarService.php:254 -msgid "Permission denied" -msgstr "没有编辑权限" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:24 +#: application/forms/AddShowRebroadcastDates.php:29 +#: application/forms/DateRange.php:35 application/forms/DateRange.php:65 +#: application/forms/LiveStreamingPreferences.php:95 +#: application/forms/LiveStreamingPreferences.php:125 +#: application/forms/ShowBuilder.php:37 application/forms/ShowBuilder.php:67 +#: application/forms/ShowListenerStat.php:35 +#: application/forms/ShowListenerStat.php:65 +#: application/forms/StreamSettingSubForm.php:107 +#: application/forms/StreamSettingSubForm.php:128 +#: application/forms/StreamSettingSubForm.php:145 +#: application/forms/StreamSettingSubForm.php:170 +#: application/forms/StreamSettingSubForm.php:181 +#: application/forms/StreamSettingSubForm.php:191 +#: application/forms/StreamSettingSubForm.php:201 +msgid "Invalid character entered" +msgstr "输入的字符不合要求" -#: legacy/application/services/CalendarService.php:258 -msgid "Can't drag and drop repeating shows" -msgstr "系列中的节目无法拖拽" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:64 +#: application/forms/AddShowRebroadcastDates.php:69 +msgid "Day must be specified" +msgstr "请指定天" -#: legacy/application/services/CalendarService.php:267 -msgid "Can't move a past show" -msgstr "已经结束的节目无法更改时间" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:69 +#: application/forms/AddShowRebroadcastDates.php:74 +msgid "Time must be specified" +msgstr "请指定时间" -#: legacy/application/services/CalendarService.php:302 -msgid "Can't move show into past" -msgstr "节目不能设置到已过去的时间点" +#: application/forms/AddShowAbsoluteRebroadcastDates.php:93 +#: application/forms/AddShowRebroadcastDates.php:102 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "至少间隔一个小时" -#: legacy/application/services/CalendarService.php:309 -#: legacy/application/forms/AddShowWhen.php:293 -#: legacy/application/forms/AddShowWhen.php:321 -#: legacy/application/forms/AddShowWhen.php:327 -msgid "Cannot schedule overlapping shows" -msgstr "节目时间设置与其他节目有冲突" - -#: legacy/application/services/CalendarService.php:322 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "录音和重播节目之间的间隔必须大于等于1小时。" - -#: legacy/application/services/CalendarService.php:332 -msgid "Show was deleted because recorded show does not exist!" -msgstr "录音节目不存在,节目已删除!" - -#: legacy/application/services/CalendarService.php:339 -msgid "Must wait 1 hour to rebroadcast." -msgstr "重播节目必须设置于1小时之后。" - -#: legacy/application/services/HistoryService.php:1126 -msgid "Track" -msgstr "曲目" - -#: legacy/application/services/HistoryService.php:1129 -#: legacy/application/forms/SmartBlockCriteria.php:74 -#: legacy/application/models/Block.php:1455 -#: legacy/application/models/Block.php:1555 -msgid "Track Type" -msgstr "" - -#: legacy/application/services/HistoryService.php:1154 -#: legacy/application/forms/EditHistoryItem.php:32 -msgid "Start Time" -msgstr "开始时间" - -#: legacy/application/services/HistoryService.php:1155 -#: legacy/application/forms/EditHistoryItem.php:44 -msgid "End Time" -msgstr "结束时间" - -#: legacy/application/services/HistoryService.php:1175 -msgid "Played" -msgstr "已播放" - -#: legacy/application/forms/AddShowAutoPlaylist.php:18 +#: application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:25 +#: application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: legacy/application/forms/AddShowAutoPlaylist.php:32 +#: application/forms/AddShowAutoPlaylist.php:32 msgid "Repeat Playlist Until Show is Full ?" msgstr "" -#: legacy/application/forms/SmartBlockCriteria.php:55 -#: legacy/application/models/Block.php:1435 -#: legacy/application/models/Block.php:1535 -msgid "Select criteria" -msgstr "选择属性" - -#: legacy/application/forms/SmartBlockCriteria.php:57 -#: legacy/application/models/Block.php:1437 -#: legacy/application/models/Block.php:1537 -msgid "Bit Rate (Kbps)" -msgstr "比特率(Kbps)" - -#: legacy/application/forms/SmartBlockCriteria.php:79 -#: legacy/application/models/Block.php:1460 -#: legacy/application/models/Block.php:1560 -msgid "Sample Rate (kHz)" -msgstr "样本率(KHz)" - -#: legacy/application/forms/SmartBlockCriteria.php:129 -#: legacy/application/models/Block.php:1476 -#: legacy/application/models/Block.php:1576 -msgid "before" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:130 -#: legacy/application/models/Block.php:1477 -#: legacy/application/models/Block.php:1577 -msgid "after" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:131 -#: legacy/application/models/Block.php:1478 -#: legacy/application/models/Block.php:1578 -msgid "between" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:147 -#: legacy/application/forms/SmartBlockCriteria.php:465 -#: legacy/application/forms/SmartBlockCriteria.php:507 -msgid "Select unit of time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:148 -msgid "minute(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:149 -msgid "hour(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:150 -msgid "day(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:151 -msgid "week(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:152 -msgid "month(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:153 -msgid "year(s)" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:164 -msgid "hours" -msgstr "小时" - -#: legacy/application/forms/SmartBlockCriteria.php:165 -msgid "minutes" -msgstr "分钟" - -#: legacy/application/forms/SmartBlockCriteria.php:166 -#: legacy/application/models/Block.php:334 -msgid "items" -msgstr "个数" - -#: legacy/application/forms/SmartBlockCriteria.php:167 -msgid "time remaining in show" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:176 -msgid "Randomly" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:177 -msgid "Newest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:178 -msgid "Oldest" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:179 -msgid "Most recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:180 -msgid "Least recently played" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:202 -msgid "Select Track Type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:263 -msgid "Type:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:266 -msgid "Dynamic" -msgstr "动态" - -#: legacy/application/forms/SmartBlockCriteria.php:267 -msgid "Static" -msgstr "静态" - -#: legacy/application/forms/SmartBlockCriteria.php:432 -msgid "Select track type" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:517 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:525 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:534 -msgid "Sort Tracks:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:552 -msgid "Limit to:" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:565 -msgid "Generate playlist content and save criteria" -msgstr "保存条件设置并生成播放列表内容" - -#: legacy/application/forms/SmartBlockCriteria.php:578 -msgid "Shuffle playlist content" -msgstr "随机打乱歌曲次序" - -#: legacy/application/forms/SmartBlockCriteria.php:813 -#: legacy/application/forms/SmartBlockCriteria.php:825 -msgid "Limit cannot be empty or smaller than 0" -msgstr "限制的设置不能比0小" - -#: legacy/application/forms/SmartBlockCriteria.php:818 -msgid "Limit cannot be more than 24 hrs" -msgstr "限制的设置不能大于24小时" - -#: legacy/application/forms/SmartBlockCriteria.php:828 -msgid "The value should be an integer" -msgstr "值只能为整数" - -#: legacy/application/forms/SmartBlockCriteria.php:831 -msgid "500 is the max item limit value you can set" -msgstr "最多只能允许500条内容" - -#: legacy/application/forms/SmartBlockCriteria.php:842 -msgid "You must select Criteria and Modifier" -msgstr "条件和操作符不能为空" - -#: legacy/application/forms/SmartBlockCriteria.php:849 -msgid "'Length' should be in '00:00:00' format" -msgstr "‘长度’格式应该为‘00:00:00’" - -#: legacy/application/forms/SmartBlockCriteria.php:857 -msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:863 -#: legacy/application/forms/SmartBlockCriteria.php:888 -msgid "You must select a time unit for a relative datetime." -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:868 -#: legacy/application/forms/SmartBlockCriteria.php:894 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式" - -#: legacy/application/forms/SmartBlockCriteria.php:883 -msgid "Only non-negative integer numbers are allowed for a relative date time" -msgstr "" - -#: legacy/application/forms/SmartBlockCriteria.php:909 -msgid "The value has to be numeric" -msgstr "应该为数字" - -#: legacy/application/forms/SmartBlockCriteria.php:914 -msgid "The value should be less then 2147483648" -msgstr "不能大于2147483648" - -#: legacy/application/forms/SmartBlockCriteria.php:919 -#, php-format -msgid "The value should be less than %s characters" -msgstr "不能小于%s个字符" - -#: legacy/application/forms/SmartBlockCriteria.php:926 -msgid "Value cannot be empty" -msgstr "不能为空" - -#: legacy/application/forms/EditAudioMD.php:90 -msgid "Owner:" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:102 -msgid "Select a Type" -msgstr "" - -#: legacy/application/forms/EditAudioMD.php:217 -msgid "ISRC Number:" -msgstr "ISRC编号:" - -#: legacy/application/forms/EditAudioMD.php:288 -msgid "Publish..." -msgstr "" - -#: legacy/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "导入文件夹:" - -#: legacy/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "监控文件夹:" - -#: legacy/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "无效的路径" - -#: legacy/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "绑定:" - -#: legacy/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "类型:" - -#: legacy/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "每周" - -#: legacy/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "每隔2周" - -#: legacy/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "每隔3周" - -#: legacy/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "每隔4周" - -#: legacy/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "每月" - -#: legacy/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "选择天数:" - -#: legacy/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "重复类型:" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "按月的同一日期" - -#: legacy/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "一个星期的同一日子" - -#: legacy/application/forms/AddShowRepeats.php:56 -#: legacy/application/forms/ShowListenerStat.php:44 -#: legacy/application/forms/ShowBuilder.php:46 -#: legacy/application/forms/DateRange.php:44 -msgid "Date End:" -msgstr "结束日期:" - -#: legacy/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "无休止?" - -#: legacy/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "结束日期应晚于开始日期" - -#: legacy/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "请选择在哪一天重复" - -#: legacy/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: legacy/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "不能为空" - -#: legacy/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’" - -#: legacy/application/forms/AddShowWhen.php:22 -msgid "Start Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:25 -#: legacy/application/forms/AddShowWhen.php:37 -msgid "In the Future:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:64 -msgid "End Time:" -msgstr "" - -#: legacy/application/forms/AddShowWhen.php:98 -msgid "Timezone:" -msgstr "时区" - -#: legacy/application/forms/AddShowWhen.php:107 -msgid "Repeats?" -msgstr "是否设置为系列节目?" - -#: legacy/application/forms/AddShowWhen.php:139 -msgid "Cannot create show in the past" -msgstr "节目不能设置为过去的时间" - -#: legacy/application/forms/AddShowWhen.php:147 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "节目已经启动,无法修改开始时间/日期" - -#: legacy/application/forms/AddShowWhen.php:156 -#: legacy/application/models/Show.php:320 -msgid "End date/time cannot be in the past" -msgstr "节目结束的时间或日期不能设置为过去的时间" - -#: legacy/application/forms/AddShowWhen.php:164 -msgid "Cannot have duration < 0m" -msgstr "节目时长不能小于0" - -#: legacy/application/forms/AddShowWhen.php:168 -msgid "Cannot have duration 00h 00m" -msgstr "节目时长不能为0" - -#: legacy/application/forms/AddShowWhen.php:175 -msgid "Cannot have duration greater than 24h" -msgstr "节目时长不能超过24小时" - -#: legacy/application/forms/AddUser.php:28 -#: legacy/application/forms/Login.php:39 -#: legacy/application/forms/LiveStreamingPreferences.php:42 -#: legacy/application/forms/EditUser.php:36 -msgid "Username:" -msgstr "用户名:" - -#: legacy/application/forms/AddUser.php:37 -#: legacy/application/forms/Login.php:52 -#: legacy/application/forms/LiveStreamingPreferences.php:58 -#: legacy/application/forms/EditUser.php:47 -msgid "Password:" -msgstr "密码:" - -#: legacy/application/forms/AddUser.php:45 -#: legacy/application/forms/EditUser.php:56 -msgid "Verify Password:" -msgstr "再次输入密码:" - -#: legacy/application/forms/AddUser.php:54 -#: legacy/application/forms/EditUser.php:66 -msgid "Firstname:" -msgstr "名:" - -#: legacy/application/forms/AddUser.php:60 -#: legacy/application/forms/EditUser.php:74 -msgid "Lastname:" -msgstr "姓:" - -#: legacy/application/forms/AddUser.php:66 -#: legacy/application/forms/EditUser.php:82 -msgid "Email:" -msgstr "电邮:" - -#: legacy/application/forms/AddUser.php:75 -#: legacy/application/forms/EditUser.php:93 -msgid "Mobile Phone:" -msgstr "手机:" - -#: legacy/application/forms/AddUser.php:81 -#: legacy/application/forms/EditUser.php:101 -msgid "Skype:" -msgstr "Skype帐号:" - -#: legacy/application/forms/AddUser.php:87 -#: legacy/application/forms/EditUser.php:109 -msgid "Jabber:" -msgstr "Jabber帐号:" - -#: legacy/application/forms/AddUser.php:94 -msgid "User Type:" -msgstr "用户类型:" - -#: legacy/application/forms/AddUser.php:119 -#: legacy/application/forms/EditUser.php:142 -msgid "Login name is not unique." -msgstr "帐号重名。" - -#: legacy/application/forms/AddShowLiveStream.php:11 +#: application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:17 +#: application/forms/AddShowLiveStream.php:17 msgid "Use Custom Authentication:" msgstr "使用自定义的用户认证:" -#: legacy/application/forms/AddShowLiveStream.php:26 +#: application/forms/AddShowLiveStream.php:27 msgid "Custom Username" msgstr "自定义用户名" -#: legacy/application/forms/AddShowLiveStream.php:38 +#: application/forms/AddShowLiveStream.php:40 msgid "Custom Password" msgstr "自定义密码" -#: legacy/application/forms/AddShowLiveStream.php:49 +#: application/forms/AddShowLiveStream.php:52 msgid "Host:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:55 +#: application/forms/AddShowLiveStream.php:59 msgid "Port:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:61 +#: application/forms/AddShowLiveStream.php:66 msgid "Mount:" msgstr "" -#: legacy/application/forms/AddShowLiveStream.php:78 +#: application/forms/AddShowLiveStream.php:85 msgid "Username field cannot be empty." msgstr "请填写用户名" -#: legacy/application/forms/AddShowLiveStream.php:83 +#: application/forms/AddShowLiveStream.php:90 msgid "Password field cannot be empty." msgstr "请填写密码" -#: legacy/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: application/forms/AddShowRR.php:9 +msgid "Record from Line In?" +msgstr "从线路输入录制?" -#: legacy/application/forms/SetupLanguageTimezone.php:23 -#: legacy/application/forms/GeneralPreferences.php:187 -msgid "Station Timezone" -msgstr "系统使用的时区" +#: application/forms/AddShowRR.php:15 +msgid "Rebroadcast?" +msgstr "重播?" -#: legacy/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: application/forms/AddShowRebroadcastDates.php:14 +msgid "days" +msgstr "天" -#: legacy/application/forms/PodcastPreferences.php:10 -msgid "Public" -msgstr "" +#: application/forms/AddShowRepeats.php:8 +msgid "Link:" +msgstr "绑定:" -#: legacy/application/forms/PodcastPreferences.php:11 -msgid "Private" -msgstr "" +#: application/forms/AddShowRepeats.php:14 +msgid "Repeat Type:" +msgstr "类型:" -#: legacy/application/forms/ShowListenerStat.php:16 -#: legacy/application/forms/ShowBuilder.php:18 -#: legacy/application/forms/DateRange.php:16 -msgid "Date Start:" -msgstr "开始日期:" +#: application/forms/AddShowRepeats.php:17 +msgid "weekly" +msgstr "每周" -#: legacy/application/forms/ShowListenerStat.php:35 -#: legacy/application/forms/ShowListenerStat.php:63 -#: legacy/application/forms/ShowBuilder.php:37 -#: legacy/application/forms/ShowBuilder.php:65 -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: legacy/application/forms/DateRange.php:35 -#: legacy/application/forms/DateRange.php:63 -#: legacy/application/forms/LiveStreamingPreferences.php:92 -#: legacy/application/forms/LiveStreamingPreferences.php:119 -#: legacy/application/forms/AddShowRebroadcastDates.php:31 -#: legacy/application/forms/StreamSettingSubForm.php:102 -#: legacy/application/forms/StreamSettingSubForm.php:121 -#: legacy/application/forms/StreamSettingSubForm.php:136 -#: legacy/application/forms/StreamSettingSubForm.php:158 -#: legacy/application/forms/StreamSettingSubForm.php:168 -#: legacy/application/forms/StreamSettingSubForm.php:177 -#: legacy/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "输入的字符不合要求" +#: application/forms/AddShowRepeats.php:18 +msgid "every 2 weeks" +msgstr "每隔2周" -#: legacy/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "查找用户:" +#: application/forms/AddShowRepeats.php:19 +msgid "every 3 weeks" +msgstr "每隔3周" -#: legacy/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "选择节目编辑:" +#: application/forms/AddShowRepeats.php:20 +msgid "every 4 weeks" +msgstr "每隔4周" -#: legacy/application/forms/ShowBuilder.php:72 -#: legacy/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: application/forms/AddShowRepeats.php:21 +msgid "monthly" +msgstr "每月" -#: legacy/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "我的全部节目:" +#: application/forms/AddShowRepeats.php:30 +msgid "Select Days:" +msgstr "选择天数:" -#: legacy/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: application/forms/AddShowRepeats.php:46 +msgid "Repeat By:" +msgstr "重复类型:" -#: legacy/application/forms/AddShowStyle.php:12 +#: application/forms/AddShowRepeats.php:49 +msgid "day of the month" +msgstr "按月的同一日期" + +#: application/forms/AddShowRepeats.php:49 +msgid "day of the week" +msgstr "一个星期的同一日子" + +#: application/forms/AddShowRepeats.php:57 application/forms/DateRange.php:45 +#: application/forms/ShowBuilder.php:47 +#: application/forms/ShowListenerStat.php:45 +msgid "Date End:" +msgstr "结束日期:" + +#: application/forms/AddShowRepeats.php:70 +msgid "No End?" +msgstr "无休止?" + +#: application/forms/AddShowRepeats.php:108 +msgid "End date must be after start date" +msgstr "结束日期应晚于开始日期" + +#: application/forms/AddShowRepeats.php:117 +msgid "Please select a repeat day" +msgstr "请选择在哪一天重复" + +#: application/forms/AddShowStyle.php:11 msgid "Background Colour:" msgstr "背景色:" -#: legacy/application/forms/AddShowStyle.php:31 +#: application/forms/AddShowStyle.php:30 msgid "Text Colour:" msgstr "文字颜色:" -#: legacy/application/forms/AddShowStyle.php:49 +#: application/forms/AddShowStyle.php:48 msgid "Current Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:72 +#: application/forms/AddShowStyle.php:71 msgid "Show Logo:" msgstr "" -#: legacy/application/forms/AddShowStyle.php:87 +#: application/forms/AddShowStyle.php:87 msgid "Logo Preview:" msgstr "" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: legacy/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "请指定天" +#: application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "名字:" -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: legacy/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "请指定时间" - -#: legacy/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: legacy/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "至少间隔一个小时" - -#: legacy/application/forms/AddShowWhat.php:30 +#: application/forms/AddShowWhat.php:30 msgid "Untitled Show" msgstr "未命名节目" -#: legacy/application/forms/AddShowWhat.php:69 +#: application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "链接地址:" + +#: application/forms/AddShowWhat.php:45 application/forms/EditAudioMD.php:140 +msgid "Genre:" +msgstr "风格:" + +#: application/forms/AddShowWhat.php:54 application/forms/AddTracktype.php:35 +#: application/forms/EditAudioMD.php:120 +msgid "Description:" +msgstr "描述:" + +#: application/forms/AddShowWhat.php:69 msgid "Instance Description:" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:27 +#: application/forms/AddShowWhen.php:15 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01:59’" + +#: application/forms/AddShowWhen.php:21 +msgid "Start Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:24 application/forms/AddShowWhen.php:36 +msgid "In the Future:" +msgstr "" + +#: application/forms/AddShowWhen.php:64 +msgid "End Time:" +msgstr "" + +#: application/forms/AddShowWhen.php:91 +msgid "Duration:" +msgstr "时长:" + +#: application/forms/AddShowWhen.php:100 +msgid "Timezone:" +msgstr "时区" + +#: application/forms/AddShowWhen.php:110 +msgid "Repeats?" +msgstr "是否设置为系列节目?" + +#: application/forms/AddShowWhen.php:151 +msgid "Cannot create show in the past" +msgstr "节目不能设置为过去的时间" + +#: application/forms/AddShowWhen.php:159 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "节目已经启动,无法修改开始时间/日期" + +#: application/forms/AddShowWhen.php:168 application/models/Show.php:330 +msgid "End date/time cannot be in the past" +msgstr "节目结束的时间或日期不能设置为过去的时间" + +#: application/forms/AddShowWhen.php:176 +msgid "Cannot have duration < 0m" +msgstr "节目时长不能小于0" + +#: application/forms/AddShowWhen.php:179 +msgid "Cannot have duration 00h 00m" +msgstr "节目时长不能为0" + +#: application/forms/AddShowWhen.php:185 +msgid "Cannot have duration greater than 24h" +msgstr "节目时长不能超过24小时" + +#: application/forms/AddShowWhen.php:315 application/forms/AddShowWhen.php:346 +#: application/forms/AddShowWhen.php:351 +#: application/services/CalendarService.php:309 +msgid "Cannot schedule overlapping shows" +msgstr "节目时间设置与其他节目有冲突" + +#: application/forms/AddShowWho.php:9 +msgid "Search Users:" +msgstr "查找用户:" + +#: application/forms/AddShowWho.php:23 +msgid "DJs:" +msgstr "选择节目编辑:" + +#: application/forms/AddTracktype.php:20 +msgid "Type Name:" +msgstr "" + +#: application/forms/AddTracktype.php:26 +msgid "Code:" +msgstr "" + +#: application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: application/forms/AddUser.php:27 application/forms/EditUser.php:35 +#: application/forms/LiveStreamingPreferences.php:44 +#: application/forms/Login.php:39 +msgid "Username:" +msgstr "用户名:" + +#: application/forms/AddUser.php:36 application/forms/EditUser.php:46 +#: application/forms/LiveStreamingPreferences.php:61 +#: application/forms/Login.php:53 +msgid "Password:" +msgstr "密码:" + +#: application/forms/AddUser.php:44 application/forms/EditUser.php:55 +msgid "Verify Password:" +msgstr "再次输入密码:" + +#: application/forms/AddUser.php:53 application/forms/EditUser.php:65 +msgid "Firstname:" +msgstr "名:" + +#: application/forms/AddUser.php:59 application/forms/EditUser.php:73 +msgid "Lastname:" +msgstr "姓:" + +#: application/forms/AddUser.php:65 application/forms/EditUser.php:81 +msgid "Email:" +msgstr "电邮:" + +#: application/forms/AddUser.php:74 application/forms/EditUser.php:92 +msgid "Mobile Phone:" +msgstr "手机:" + +#: application/forms/AddUser.php:80 application/forms/EditUser.php:100 +msgid "Skype:" +msgstr "Skype帐号:" + +#: application/forms/AddUser.php:86 application/forms/EditUser.php:108 +msgid "Jabber:" +msgstr "Jabber帐号:" + +#: application/forms/AddUser.php:93 +msgid "User Type:" +msgstr "用户类型:" + +#: application/forms/AddUser.php:118 application/forms/EditUser.php:143 +msgid "Login name is not unique." +msgstr "帐号重名。" + +#: application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "" + +#: application/forms/DateRange.php:15 application/forms/ShowBuilder.php:17 +#: application/forms/ShowListenerStat.php:15 +msgid "Date Start:" +msgstr "开始日期:" + +#: application/forms/EditAudioMD.php:54 application/forms/Player.php:15 +msgid "Title:" +msgstr "歌曲名:" + +#: application/forms/EditAudioMD.php:65 +msgid "Creator:" +msgstr "作者:" + +#: application/forms/EditAudioMD.php:76 +msgid "Album:" +msgstr "专辑名:" + +#: application/forms/EditAudioMD.php:94 +msgid "Owner:" +msgstr "" + +#: application/forms/EditAudioMD.php:106 +msgid "Select a Type" +msgstr "" + +#: application/forms/EditAudioMD.php:113 +msgid "Track Type:" +msgstr "" + +#: application/forms/EditAudioMD.php:151 +msgid "Year:" +msgstr "年份:" + +#: application/forms/EditAudioMD.php:165 +msgid "Label:" +msgstr "标签:" + +#: application/forms/EditAudioMD.php:176 +msgid "Composer:" +msgstr "编曲:" + +#: application/forms/EditAudioMD.php:187 +msgid "Conductor:" +msgstr "制作:" + +#: application/forms/EditAudioMD.php:198 +msgid "Mood:" +msgstr "情怀:" + +#: application/forms/EditAudioMD.php:209 +msgid "BPM:" +msgstr "拍子(BPM):" + +#: application/forms/EditAudioMD.php:220 +msgid "Copyright:" +msgstr "版权:" + +#: application/forms/EditAudioMD.php:231 +msgid "ISRC Number:" +msgstr "ISRC编号:" + +#: application/forms/EditAudioMD.php:242 +msgid "Website:" +msgstr "网站:" + +#: application/forms/EditAudioMD.php:253 application/forms/EditUser.php:117 +#: application/forms/Login.php:67 +msgid "Language:" +msgstr "语言:" + +#: application/forms/EditAudioMD.php:307 +msgid "Publish..." +msgstr "" + +#: application/forms/EditHistoryItem.php:32 +#: application/services/HistoryService.php:1086 +msgid "Start Time" +msgstr "开始时间" + +#: application/forms/EditHistoryItem.php:44 +#: application/services/HistoryService.php:1087 +msgid "End Time" +msgstr "结束时间" + +#: application/forms/EditUser.php:127 +msgid "Interface Timezone:" +msgstr "用户界面使用的时区:" + +#: application/forms/GeneralPreferences.php:26 msgid "Station Name" msgstr "电台名称" -#: legacy/application/forms/GeneralPreferences.php:35 +#: application/forms/GeneralPreferences.php:34 msgid "Station Description" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:44 +#: application/forms/GeneralPreferences.php:43 msgid "Station Logo:" msgstr "电台标志:" -#: legacy/application/forms/GeneralPreferences.php:45 +#: application/forms/GeneralPreferences.php:44 msgid "Note: Anything larger than 600x600 will be resized." msgstr "注意:大于600x600的图片将会被缩放" -#: legacy/application/forms/GeneralPreferences.php:64 +#: application/forms/GeneralPreferences.php:64 msgid "Default Crossfade Duration (s):" msgstr "默认混合淡入淡出效果(秒):" -#: legacy/application/forms/GeneralPreferences.php:70 -#: legacy/application/forms/GeneralPreferences.php:84 -#: legacy/application/forms/GeneralPreferences.php:98 -#: legacy/application/forms/LiveStreamingPreferences.php:34 +#: application/forms/GeneralPreferences.php:70 +#: application/forms/GeneralPreferences.php:84 +#: application/forms/GeneralPreferences.php:98 +#: application/forms/LiveStreamingPreferences.php:35 msgid "Please enter a time in seconds (eg. 0.5)" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:78 +#: application/forms/GeneralPreferences.php:78 msgid "Default Fade In (s):" msgstr "默认淡入效果(秒):" -#: legacy/application/forms/GeneralPreferences.php:92 +#: application/forms/GeneralPreferences.php:92 msgid "Default Fade Out (s):" msgstr "默认淡出效果(秒):" -#: legacy/application/forms/GeneralPreferences.php:104 +#: application/forms/GeneralPreferences.php:104 msgid "Track Type Upload Default" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:111 +#: application/forms/GeneralPreferences.php:111 msgid "Intro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:117 +#: application/forms/GeneralPreferences.php:117 msgid "Outro Autoloading Playlist" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:123 +#: application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:129 +#: application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:138 +#: application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:144 +#: application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:155 +#: application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:156 +#: application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:162 +#: application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:174 +#: application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:175 +#: application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: legacy/application/forms/GeneralPreferences.php:180 +#: application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: legacy/application/forms/GeneralPreferences.php:194 +#: application/forms/GeneralPreferences.php:187 +#: application/forms/SetupLanguageTimezone.php:21 +msgid "Station Timezone" +msgstr "系统使用的时区" + +#: application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "一周开始于" -#: legacy/application/forms/GeneralPreferences.php:210 +#: application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: legacy/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "从线路输入录制?" - -#: legacy/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "重播?" - -#: legacy/application/forms/PasswordRestore.php:14 -msgid "Email" +#: application/forms/GeneralPreferences.php:215 +msgid "Feature Previews" msgstr "" -#: legacy/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "重置密码" +#: application/forms/GeneralPreferences.php:221 +msgid "Enable this to opt-in to test new features." +msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:19 +#: application/forms/LiveStreamingPreferences.php:18 msgid "Auto Switch Off:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:25 +#: application/forms/LiveStreamingPreferences.php:25 msgid "Auto Switch On:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:31 +#: application/forms/LiveStreamingPreferences.php:32 msgid "Switch Transition Fade (s):" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:66 +#: application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:78 +#: application/forms/LiveStreamingPreferences.php:82 msgid "Master Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:81 -#: legacy/application/forms/LiveStreamingPreferences.php:111 -#: legacy/application/forms/StreamSettingSubForm.php:112 +#: application/forms/LiveStreamingPreferences.php:85 +#: application/forms/LiveStreamingPreferences.php:116 +#: application/forms/StreamSettingSubForm.php:118 msgid "Only numbers are allowed." msgstr "只允许输入数字" -#: legacy/application/forms/LiveStreamingPreferences.php:89 +#: application/forms/LiveStreamingPreferences.php:92 msgid "Master Source Mount:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:99 +#: application/forms/LiveStreamingPreferences.php:103 msgid "Show Source Host:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:108 +#: application/forms/LiveStreamingPreferences.php:113 msgid "Show Source Port:" msgstr "" -#: legacy/application/forms/LiveStreamingPreferences.php:116 +#: application/forms/LiveStreamingPreferences.php:122 msgid "Show Source Mount:" msgstr "" -#: legacy/application/forms/PasswordChange.php:17 -#: legacy/application/forms/StreamSettingSubForm.php:117 +#: application/forms/Login.php:78 +msgid "Login" +msgstr "登录" + +#: application/forms/PasswordChange.php:15 +#: application/forms/StreamSettingSubForm.php:124 msgid "Password" msgstr "密码" -#: legacy/application/forms/PasswordChange.php:28 +#: application/forms/PasswordChange.php:26 msgid "Confirm new password" msgstr "确认新密码" -#: legacy/application/forms/PasswordChange.php:36 +#: application/forms/PasswordChange.php:34 msgid "Password confirmation does not match your password." msgstr "新密码不匹配" -#: legacy/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: application/forms/PasswordRestore.php:12 +msgid "Email" msgstr "" -#: legacy/application/forms/AddTracktype.php:21 -msgid "Type Name:" +#: application/forms/PasswordRestore.php:23 +#: application/forms/StreamSettingSubForm.php:177 +msgid "Username" +msgstr "用户名" + +#: application/forms/PasswordRestore.php:34 +msgid "Reset password" +msgstr "重置密码" + +#: application/forms/PasswordRestore.php:44 +msgid "Back" msgstr "" -#: legacy/application/forms/AddTracktype.php:27 -msgid "Code:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:46 -msgid "Visibility:" -msgstr "" - -#: legacy/application/forms/AddTracktype.php:70 -msgid "Code is not unique." -msgstr "" - -#: legacy/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "天" - -#: legacy/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "启用:" - -#: legacy/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: legacy/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "流格式:" - -#: legacy/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "服务类型:" - -#: legacy/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "声道:" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - 单声道" - -#: legacy/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - 立体声" - -#: legacy/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "服务器" - -#: legacy/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "端口号" - -#: legacy/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "链接地址" - -#: legacy/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "加载点" - -#: legacy/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "管理员用户名" - -#: legacy/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "管理员密码" - -#: legacy/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "请填写“服务器”。" - -#: legacy/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "请填写“端口”。" - -#: legacy/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "请填写“加载点”。" - -#: legacy/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "用户界面使用的时区:" - -#: legacy/application/forms/Player.php:14 +#: application/forms/Player.php:14 msgid "Now Playing" msgstr "直播室" -#: legacy/application/forms/Player.php:25 +#: application/forms/Player.php:25 msgid "Select Stream:" msgstr "" -#: legacy/application/forms/Player.php:28 +#: application/forms/Player.php:28 msgid "Auto detect the most appropriate stream to use." msgstr "" -#: legacy/application/forms/Player.php:29 +#: application/forms/Player.php:29 msgid "Select a stream:" msgstr "" -#: legacy/application/forms/Player.php:41 +#: application/forms/Player.php:41 msgid " - Mobile friendly" msgstr "" -#: legacy/application/forms/Player.php:45 +#: application/forms/Player.php:45 msgid " - The player does not support Opus streams." msgstr "" -#: legacy/application/forms/Player.php:72 +#: application/forms/Player.php:72 +msgid "Embeddable code:" +msgstr "" + +#: application/forms/Player.php:73 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: legacy/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" +#: application/forms/Player.php:78 +msgid "Preview:" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" +#: application/forms/PodcastPreferences.php:9 +msgid "Feed Privacy" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" +#: application/forms/PodcastPreferences.php:11 +msgid "Public" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" +#: application/forms/PodcastPreferences.php:12 +msgid "Private" msgstr "" -#: legacy/application/forms/TuneInPreferences.php:78 -#: legacy/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +#: application/forms/SetupLanguageTimezone.php:16 +msgid "Station Language" msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname" +#: application/forms/ShowBuilder.php:75 application/forms/ShowBuilder.php:93 +msgid "Filter by Show" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' 不符合格式要求: '%format%'" +#: application/forms/ShowBuilder.php:83 +msgid "All My Shows:" +msgstr "我的全部节目:" -#: legacy/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' 小于最小长度要求 %min% " +#: application/forms/ShowBuilder.php:95 +msgid "My Shows" +msgstr "" -#: legacy/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' 大于最大长度要求 %max%" +#: application/forms/SmartBlockCriteria.php:56 +#: application/models/Block.php:1444 application/models/Block.php:1540 +msgid "Select criteria" +msgstr "选择属性" -#: legacy/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间" +#: application/forms/SmartBlockCriteria.php:58 +#: application/models/Block.php:1446 application/models/Block.php:1542 +msgid "Bit Rate (Kbps)" +msgstr "比特率(Kbps)" -#: legacy/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "两次密码输入不匹配" +#: application/forms/SmartBlockCriteria.php:75 +#: application/models/Block.php:1464 application/models/Block.php:1560 +#: application/services/HistoryService.php:1067 +msgid "Track Type" +msgstr "" -#: legacy/application/forms/StreamSetting.php:26 +#: application/forms/SmartBlockCriteria.php:80 +#: application/models/Block.php:1469 application/models/Block.php:1565 +msgid "Sample Rate (kHz)" +msgstr "样本率(KHz)" + +#: application/forms/SmartBlockCriteria.php:134 +#: application/models/Block.php:1485 application/models/Block.php:1581 +msgid "before" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:135 +#: application/models/Block.php:1486 application/models/Block.php:1582 +msgid "after" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:136 +#: application/models/Block.php:1487 application/models/Block.php:1583 +msgid "between" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:152 +#: application/forms/SmartBlockCriteria.php:467 +#: application/forms/SmartBlockCriteria.php:509 +msgid "Select unit of time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:153 +msgid "minute(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:154 +msgid "hour(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:155 +msgid "day(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:156 +msgid "week(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:157 +msgid "month(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:158 +msgid "year(s)" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:169 +msgid "hours" +msgstr "小时" + +#: application/forms/SmartBlockCriteria.php:170 +msgid "minutes" +msgstr "分钟" + +#: application/forms/SmartBlockCriteria.php:171 +#: application/models/Block.php:336 +msgid "items" +msgstr "个数" + +#: application/forms/SmartBlockCriteria.php:172 +msgid "time remaining in show" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:183 +msgid "Randomly" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:184 +msgid "Newest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:185 +msgid "Oldest" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:186 +msgid "Most recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:187 +msgid "Least recently played" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:211 +msgid "Select Track Type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:268 +msgid "Type:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:271 +msgid "Dynamic" +msgstr "动态" + +#: application/forms/SmartBlockCriteria.php:272 +msgid "Static" +msgstr "静态" + +#: application/forms/SmartBlockCriteria.php:434 +msgid "Select track type" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:519 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:528 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:538 +msgid "Sort Tracks:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:558 +msgid "Limit to:" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:571 +msgid "Generate playlist content and save criteria" +msgstr "保存条件设置并生成播放列表内容" + +#: application/forms/SmartBlockCriteria.php:583 +msgid "Shuffle playlist content" +msgstr "随机打乱歌曲次序" + +#: application/forms/SmartBlockCriteria.php:585 +msgid "Shuffle" +msgstr "随机" + +#: application/forms/SmartBlockCriteria.php:818 +#: application/forms/SmartBlockCriteria.php:830 +msgid "Limit cannot be empty or smaller than 0" +msgstr "限制的设置不能比0小" + +#: application/forms/SmartBlockCriteria.php:823 +msgid "Limit cannot be more than 24 hrs" +msgstr "限制的设置不能大于24小时" + +#: application/forms/SmartBlockCriteria.php:833 +msgid "The value should be an integer" +msgstr "值只能为整数" + +#: application/forms/SmartBlockCriteria.php:836 +msgid "500 is the max item limit value you can set" +msgstr "最多只能允许500条内容" + +#: application/forms/SmartBlockCriteria.php:847 +msgid "You must select Criteria and Modifier" +msgstr "条件和操作符不能为空" + +#: application/forms/SmartBlockCriteria.php:854 +msgid "'Length' should be in '00:00:00' format" +msgstr "‘长度’格式应该为‘00:00:00’" + +#: application/forms/SmartBlockCriteria.php:862 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:867 +#: application/forms/SmartBlockCriteria.php:892 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: application/forms/SmartBlockCriteria.php:872 +#: application/forms/SmartBlockCriteria.php:897 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式" + +#: application/forms/SmartBlockCriteria.php:887 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: application/forms/SmartBlockCriteria.php:912 +msgid "The value has to be numeric" +msgstr "应该为数字" + +#: application/forms/SmartBlockCriteria.php:917 +msgid "The value should be less then 2147483648" +msgstr "不能大于2147483648" + +#: application/forms/SmartBlockCriteria.php:922 +#, php-format +msgid "The value should be less than %s characters" +msgstr "不能小于%s个字符" + +#: application/forms/SmartBlockCriteria.php:929 +msgid "Value cannot be empty" +msgstr "不能为空" + +#: application/forms/StreamSetting.php:25 msgid "Hardware Audio Output:" msgstr "" -#: legacy/application/forms/StreamSetting.php:33 +#: application/forms/StreamSetting.php:33 msgid "Output Type" msgstr "" -#: legacy/application/forms/StreamSetting.php:35 +#: application/forms/StreamSetting.php:35 msgid "ALSA" msgstr "" -#: legacy/application/forms/StreamSetting.php:36 +#: application/forms/StreamSetting.php:36 msgid "AO" msgstr "" -#: legacy/application/forms/StreamSetting.php:37 +#: application/forms/StreamSetting.php:37 msgid "OSS" msgstr "" -#: legacy/application/forms/StreamSetting.php:38 +#: application/forms/StreamSetting.php:38 msgid "Portaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:39 +#: application/forms/StreamSetting.php:39 msgid "Pulseaudio" msgstr "" -#: legacy/application/forms/StreamSetting.php:40 +#: application/forms/StreamSetting.php:40 msgid "Jack" msgstr "" -#: legacy/application/forms/StreamSetting.php:46 +#: application/forms/StreamSetting.php:47 msgid "Icecast Vorbis Metadata" msgstr "Icecast的Vorbis元数据" -#: legacy/application/forms/StreamSetting.php:56 +#: application/forms/StreamSetting.php:58 msgid "Stream Label:" msgstr "流标签:" -#: legacy/application/forms/StreamSetting.php:57 +#: application/forms/StreamSetting.php:59 msgid "Artist - Title" msgstr "歌手 - 歌名" -#: legacy/application/forms/StreamSetting.php:58 +#: application/forms/StreamSetting.php:60 msgid "Show - Artist - Title" msgstr "节目 - 歌手 - 歌名" -#: legacy/application/forms/StreamSetting.php:59 +#: application/forms/StreamSetting.php:61 msgid "Station name - Show name" msgstr "电台名 - 节目名" -#: legacy/application/forms/StreamSetting.php:65 +#: application/forms/StreamSetting.php:67 msgid "Off Air Metadata" msgstr "非直播状态下的输出流元数据" -#: legacy/application/forms/StreamSetting.php:71 +#: application/forms/StreamSetting.php:74 msgid "Enable Replay Gain" msgstr "启用回放增益" -#: legacy/application/forms/StreamSetting.php:77 +#: application/forms/StreamSetting.php:81 msgid "Replay Gain Modifier" msgstr "回放增益调整" -#: legacy/application/forms/StreamSetting.php:85 +#: application/forms/StreamSetting.php:90 msgid "Streaming Server:" msgstr "" -#: legacy/application/forms/StreamSetting.php:86 -msgid "Default Streaming" -msgstr "" - -#: legacy/application/forms/StreamSetting.php:86 +#: application/forms/StreamSetting.php:91 msgid "Custom / 3rd Party Streaming" msgstr "" -#: legacy/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "1753 - 9999 是可以接受的年代值,而不是“%s”" - -#: legacy/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "%s-%s-%s采用了错误的日期格式" - -#: legacy/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "%s:%s:%s 采用了错误的时间格式" - -#: legacy/application/common/UsabilityHints.php:66 -msgid "Upload some tracks below to add them to your library!" +#: application/forms/StreamSetting.php:91 +msgid "Default Streaming" msgstr "" -#: legacy/application/common/UsabilityHints.php:68 -#, php-format -msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "启用:" -#: legacy/application/common/UsabilityHints.php:74 -msgid "Click the 'New Show' button and fill out the required fields." +#: application/forms/StreamSettingSubForm.php:60 +msgid "Mobile:" msgstr "" -#: legacy/application/common/UsabilityHints.php:76 -#, php-format -msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:67 +msgid "Stream Type:" +msgstr "流格式:" -#: legacy/application/common/UsabilityHints.php:84 -msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." -msgstr "" +#: application/forms/StreamSettingSubForm.php:76 +msgid "Bit Rate:" +msgstr "比特率:" -#: legacy/application/common/UsabilityHints.php:86 -#, php-format -msgid "" -"Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.\n" -" %sCreate an unlinked show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:85 +msgid "Service Type:" +msgstr "服务类型:" -#: legacy/application/common/UsabilityHints.php:91 -msgid "To start broadcasting, click on the current show and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:94 +msgid "Channels:" +msgstr "声道:" -#: legacy/application/common/UsabilityHints.php:93 -#, php-format -msgid "It looks like the current show needs more tracks. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "1 - Mono" +msgstr "1 - 单声道" -#: legacy/application/common/UsabilityHints.php:100 -msgid "Click on the show starting next and select 'Schedule Tracks'" -msgstr "" +#: application/forms/StreamSettingSubForm.php:95 +msgid "2 - Stereo" +msgstr "2 - 立体声" -#: legacy/application/common/UsabilityHints.php:102 -#, php-format -msgid "It looks like the next show is empty. %sAdd tracks to your show now%s." -msgstr "" +#: application/forms/StreamSettingSubForm.php:103 +msgid "Server" +msgstr "服务器" -#: legacy/application/common/LocaleHelper.php:22 -msgid "English" -msgstr "" +#: application/forms/StreamSettingSubForm.php:114 +msgid "Port" +msgstr "端口号" -#: legacy/application/common/LocaleHelper.php:23 -msgid "Afar" -msgstr "" +#: application/forms/StreamSettingSubForm.php:142 +msgid "URL" +msgstr "链接地址" -#: legacy/application/common/LocaleHelper.php:24 -msgid "Abkhazian" -msgstr "" +#: application/forms/StreamSettingSubForm.php:152 +msgid "Name" +msgstr "名字" -#: legacy/application/common/LocaleHelper.php:25 -msgid "Afrikaans" -msgstr "" +#: application/forms/StreamSettingSubForm.php:166 +msgid "Mount Point" +msgstr "加载点" -#: legacy/application/common/LocaleHelper.php:26 -msgid "Amharic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:188 +msgid "Admin User" +msgstr "管理员用户名" -#: legacy/application/common/LocaleHelper.php:27 -msgid "Arabic" -msgstr "" +#: application/forms/StreamSettingSubForm.php:198 +msgid "Admin Password" +msgstr "管理员密码" -#: legacy/application/common/LocaleHelper.php:28 -msgid "Assamese" -msgstr "" +#: application/forms/StreamSettingSubForm.php:227 +msgid "Server cannot be empty." +msgstr "请填写“服务器”。" -#: legacy/application/common/LocaleHelper.php:29 -msgid "Aymara" -msgstr "" +#: application/forms/StreamSettingSubForm.php:232 +msgid "Port cannot be empty." +msgstr "请填写“端口”。" -#: legacy/application/common/LocaleHelper.php:30 -msgid "Azerbaijani" -msgstr "" +#: application/forms/StreamSettingSubForm.php:238 +msgid "Mount cannot be empty with Icecast server." +msgstr "请填写“加载点”。" -#: legacy/application/common/LocaleHelper.php:31 -msgid "Bashkir" +#: application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: legacy/application/common/LocaleHelper.php:32 -msgid "Belarusian" +#: application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: legacy/application/common/LocaleHelper.php:33 -msgid "Bulgarian" +#: application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: legacy/application/common/LocaleHelper.php:34 -msgid "Bihari" +#: application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: legacy/application/common/LocaleHelper.php:35 -msgid "Bislama" +#: application/forms/TuneInPreferences.php:78 +#: application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: legacy/application/common/LocaleHelper.php:36 -msgid "Bengali/Bangla" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:37 -msgid "Tibetan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:38 -msgid "Breton" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:39 -msgid "Catalan" -msgstr "" +#: application/forms/WatchedDirPreferences.php:13 +msgid "Import Folder:" +msgstr "导入文件夹:" -#: legacy/application/common/LocaleHelper.php:40 -msgid "Corsican" -msgstr "" +#: application/forms/WatchedDirPreferences.php:24 +msgid "Watched Folders:" +msgstr "监控文件夹:" -#: legacy/application/common/LocaleHelper.php:41 -msgid "Czech" -msgstr "" +#: application/forms/WatchedDirPreferences.php:39 +msgid "Not a valid Directory" +msgstr "无效的路径" -#: legacy/application/common/LocaleHelper.php:42 -msgid "Welsh" -msgstr "" +#: application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: application/forms/helpers/ValidationTypes.php:9 +msgid "Value is required and can't be empty" +msgstr "不能为空" -#: legacy/application/common/LocaleHelper.php:43 -msgid "Danish" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:20 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname" -#: legacy/application/common/LocaleHelper.php:44 -msgid "German" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:34 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' 不符合格式要求: '%format%'" -#: legacy/application/common/LocaleHelper.php:45 -msgid "Bhutani" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:60 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' 小于最小长度要求 %min% " -#: legacy/application/common/LocaleHelper.php:46 -msgid "Greek" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:65 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' 大于最大长度要求 %max%" -#: legacy/application/common/LocaleHelper.php:47 -msgid "Esperanto" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:77 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间" -#: legacy/application/common/LocaleHelper.php:48 -msgid "Spanish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:49 -msgid "Estonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:50 -msgid "Basque" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:51 -msgid "Persian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:52 -msgid "Finnish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:53 -msgid "Fiji" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:54 -msgid "Faeroese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:55 -msgid "French" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:56 -msgid "Frisian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:57 -msgid "Irish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:58 -msgid "Scots/Gaelic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:59 -msgid "Galician" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:60 -msgid "Guarani" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:61 -msgid "Gujarati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:62 -msgid "Hausa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:63 -msgid "Hindi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:64 -msgid "Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:65 -msgid "Hungarian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:66 -msgid "Armenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:67 -msgid "Interlingua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:68 -msgid "Interlingue" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:69 -msgid "Inupiak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:70 -msgid "Indonesian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:71 -msgid "Icelandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:72 -msgid "Italian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:73 -msgid "Hebrew" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:74 -msgid "Japanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:75 -msgid "Yiddish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:76 -msgid "Javanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:77 -msgid "Georgian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:78 -msgid "Kazakh" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:79 -msgid "Greenlandic" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:80 -msgid "Cambodian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:81 -msgid "Kannada" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:82 -msgid "Korean" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:83 -msgid "Kashmiri" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:84 -msgid "Kurdish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:85 -msgid "Kirghiz" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:86 -msgid "Latin" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:87 -msgid "Lingala" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:88 -msgid "Laothian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:89 -msgid "Lithuanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:90 -msgid "Latvian/Lettish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:91 -msgid "Malagasy" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:92 -msgid "Maori" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:93 -msgid "Macedonian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:94 -msgid "Malayalam" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:95 -msgid "Mongolian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:96 -msgid "Moldavian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:97 -msgid "Marathi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:98 -msgid "Malay" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:99 -msgid "Maltese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:100 -msgid "Burmese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:101 -msgid "Nauru" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:102 -msgid "Nepali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:103 -msgid "Dutch" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:104 -msgid "Norwegian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:105 -msgid "Occitan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:106 -msgid "(Afan)/Oromoor/Oriya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:107 -msgid "Punjabi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:108 -msgid "Polish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:109 -msgid "Pashto/Pushto" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:110 -msgid "Portuguese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:111 -msgid "Quechua" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:112 -msgid "Rhaeto-Romance" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:113 -msgid "Kirundi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:114 -msgid "Romanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:115 -msgid "Russian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:116 -msgid "Kinyarwanda" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:117 -msgid "Sanskrit" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:118 -msgid "Sindhi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:119 -msgid "Sangro" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:120 -msgid "Serbo-Croatian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:121 -msgid "Singhalese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:122 -msgid "Slovak" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:123 -msgid "Slovenian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:124 -msgid "Samoan" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:125 -msgid "Shona" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:126 -msgid "Somali" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:127 -msgid "Albanian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:128 -msgid "Serbian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:129 -msgid "Siswati" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:130 -msgid "Sesotho" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:131 -msgid "Sundanese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:132 -msgid "Swedish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:133 -msgid "Swahili" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:134 -msgid "Tamil" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:135 -msgid "Tegulu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:136 -msgid "Tajik" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:137 -msgid "Thai" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:138 -msgid "Tigrinya" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:139 -msgid "Turkmen" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:140 -msgid "Tagalog" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:141 -msgid "Setswana" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:142 -msgid "Tonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:143 -msgid "Turkish" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:144 -msgid "Tsonga" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:145 -msgid "Tatar" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:146 -msgid "Twi" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:147 -msgid "Ukrainian" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:148 -msgid "Urdu" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:149 -msgid "Uzbek" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:150 -msgid "Vietnamese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:151 -msgid "Volapuk" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:152 -msgid "Wolof" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:153 -msgid "Xhosa" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:154 -msgid "Yoruba" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:155 -msgid "Chinese" -msgstr "" - -#: legacy/application/common/LocaleHelper.php:156 -msgid "Zulu" -msgstr "" - -#: legacy/application/common/Timezone.php:21 -msgid "Use station default" -msgstr "" - -#: legacy/application/models/Playlist.php:810 -#: legacy/application/models/Block.php:836 -msgid "Cue in and cue out are null." -msgstr "切入点和切出点均为空" - -#: legacy/application/models/Playlist.php:841 -#: legacy/application/models/Playlist.php:866 -#: legacy/application/models/Block.php:882 -#: legacy/application/models/Block.php:903 -msgid "Can't set cue in to be larger than cue out." -msgstr "切入点不能晚于切出点" - -#: legacy/application/models/Playlist.php:849 -#: legacy/application/models/Playlist.php:893 -#: legacy/application/models/Block.php:871 -#: legacy/application/models/Block.php:927 -msgid "Can't set cue out to be greater than file length." -msgstr "切出点不能超出文件原长度" - -#: legacy/application/models/Playlist.php:885 -#: legacy/application/models/Block.php:938 -msgid "Can't set cue out to be smaller than cue in." -msgstr "切出点不能早于切入点" - -#: legacy/application/models/Webstream.php:166 -msgid "Length needs to be greater than 0 minutes" -msgstr "节目时长必须大于0分钟" - -#: legacy/application/models/Webstream.php:171 -msgid "Length should be of form \"00h 00m\"" -msgstr "时间的格式应该是 \"00h 00m\"" - -#: legacy/application/models/Webstream.php:184 -msgid "URL should be of form \"http://domain\"" -msgstr "地址的格式应该是 \"http://domain\"" - -#: legacy/application/models/Webstream.php:187 -msgid "URL should be 512 characters or less" -msgstr "地址的最大长度不能超过512字节" - -#: legacy/application/models/Webstream.php:193 -msgid "No MIME type found for webstream." -msgstr "这个媒体流不存在MIME属性,无法添加" - -#: legacy/application/models/Webstream.php:209 -msgid "Webstream name cannot be empty" -msgstr "媒体流的名字不能为空" - -#: legacy/application/models/Webstream.php:278 -msgid "Could not parse XSPF playlist" -msgstr "发现XSPF格式的播放列表,但是格式错误" - -#: legacy/application/models/Webstream.php:298 -msgid "Could not parse PLS playlist" -msgstr "发现PLS格式的播放列表,但是格式错误" - -#: legacy/application/models/Webstream.php:318 -msgid "Could not parse M3U playlist" -msgstr "发现M3U格式的播放列表,但是格式错误" - -#: legacy/application/models/Webstream.php:332 -msgid "Invalid webstream - This appears to be a file download." -msgstr "媒体流格式错误,当前“媒体流”只是一个可下载的文件" - -#: legacy/application/models/Webstream.php:336 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "未知的媒体流格式: %s" - -#: legacy/application/models/ShowBuilder.php:209 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "%s是%s的重播" - -#: legacy/application/models/Preference.php:643 -msgid "Select Country" -msgstr "选择国家" - -#: legacy/application/models/Scheduler.php:77 -msgid "Cannot move items out of linked shows" -msgstr "不能从绑定的节目系列里移出项目" - -#: legacy/application/models/Scheduler.php:123 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "当前节目内容表(内容部分)需要刷新" - -#: legacy/application/models/Scheduler.php:128 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "当前节目内容表(节目已更改)需要刷新" - -#: legacy/application/models/Scheduler.php:136 -#: legacy/application/models/Scheduler.php:491 -#: legacy/application/models/Scheduler.php:528 -#: legacy/application/models/Scheduler.php:563 -msgid "The schedule you're viewing is out of date!" -msgstr "当前节目内容需要刷新!" - -#: legacy/application/models/Scheduler.php:147 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "没有赋予修改节目 %s 的权限。" - -#: legacy/application/models/Scheduler.php:151 -msgid "You cannot add files to recording shows." -msgstr "录音节目不能添加别的内容。" - -#: legacy/application/models/Scheduler.php:157 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "节目%s已结束,不能在添加任何内容。" - -#: legacy/application/models/Scheduler.php:164 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "节目%s已经更改,需要刷新后再尝试。" - -#: legacy/application/models/Scheduler.php:185 -msgid "Content in linked shows cannot be changed while on air!" -msgstr "" - -#: legacy/application/models/Scheduler.php:202 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" - -#: legacy/application/models/Scheduler.php:227 -#: legacy/application/models/Scheduler.php:320 -msgid "A selected File does not exist!" -msgstr "某个选中的文件不存在。" - -#: legacy/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "%s 已经监控" - -#: legacy/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "%s 所含的子文件夹 %s 已经被监控" - -#: legacy/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "%s 无法监控,因为父文件夹 %s 已经监控" - -#: legacy/application/models/MusicDir.php:189 -#: legacy/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "%s 不是文件夹。" - -#: legacy/application/models/MusicDir.php:232 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list" -msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" - -#: legacy/application/models/MusicDir.php:388 -#, php-format -msgid "%s is already set as the current storage dir or in the watched folders list." -msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" - -#: legacy/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "监控文件夹名单里不存在 %s " - -#: legacy/application/models/Library.php:39 -#: legacy/application/models/Library.php:62 -msgid "None" -msgstr "" +#: application/forms/helpers/ValidationTypes.php:90 +msgid "Passwords do not match" +msgstr "两次密码输入不匹配" -#: legacy/application/models/Auth.php:33 +#: application/models/Auth.php:33 #, php-format msgid "" "Hi %s, \n" @@ -5351,7 +3907,7 @@ msgid "" "Please click this link to reset your password: " msgstr "" -#: legacy/application/models/Auth.php:35 +#: application/models/Auth.php:35 #, php-format msgid "" "\n" @@ -5359,7 +3915,7 @@ msgid "" "If you have any problems, please contact our support team: %s" msgstr "" -#: legacy/application/models/Auth.php:36 +#: application/models/Auth.php:36 #, php-format msgid "" "\n" @@ -5368,20 +3924,138 @@ msgid "" "The %s Team" msgstr "" -#: legacy/application/models/Auth.php:38 +#: application/models/Auth.php:38 #, php-format msgid "%s Password Reset" msgstr "" -#: legacy/application/models/Schedule.php:209 +#: application/models/Block.php:843 application/models/Playlist.php:811 +msgid "Cue in and cue out are null." +msgstr "切入点和切出点均为空" + +#: application/models/Block.php:878 application/models/Block.php:933 +#: application/models/Playlist.php:850 application/models/Playlist.php:891 +msgid "Can't set cue out to be greater than file length." +msgstr "切出点不能超出文件原长度" + +#: application/models/Block.php:890 application/models/Block.php:910 +#: application/models/Playlist.php:842 application/models/Playlist.php:865 +msgid "Can't set cue in to be larger than cue out." +msgstr "切入点不能晚于切出点" + +#: application/models/Block.php:945 application/models/Playlist.php:883 +msgid "Can't set cue out to be smaller than cue in." +msgstr "切出点不能早于切入点" + +#: application/models/Block.php:1460 application/models/Block.php:1556 +msgid "Upload Time" +msgstr "" + +#: application/models/Library.php:36 application/models/Library.php:59 +msgid "None" +msgstr "" + +#: application/models/MusicDir.php:169 +#, php-format +msgid "%s is already watched." +msgstr "%s 已经监控" + +#: application/models/MusicDir.php:173 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "%s 所含的子文件夹 %s 已经被监控" + +#: application/models/MusicDir.php:177 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "%s 无法监控,因为父文件夹 %s 已经监控" + +#: application/models/MusicDir.php:201 application/models/MusicDir.php:386 +#, php-format +msgid "%s is not a valid directory." +msgstr "%s 不是文件夹。" + +#: application/models/MusicDir.php:244 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list" +msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" + +#: application/models/MusicDir.php:406 +#, php-format +msgid "%s is already set as the current storage dir or in the watched folders list." +msgstr "%s 已经设置成媒体存储文件夹,或者监控文件夹。" + +#: application/models/MusicDir.php:450 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "监控文件夹名单里不存在 %s " + +#: application/models/Preference.php:521 +#, php-format +msgid "Powered by %s" +msgstr "" + +#: application/models/Preference.php:651 +msgid "Select Country" +msgstr "选择国家" + +#: application/models/Schedule.php:210 msgid "livestream" msgstr "" -#: legacy/application/models/Show.php:222 +#: application/models/Scheduler.php:81 +msgid "Cannot move items out of linked shows" +msgstr "不能从绑定的节目系列里移出项目" + +#: application/models/Scheduler.php:127 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "当前节目内容表(内容部分)需要刷新" + +#: application/models/Scheduler.php:132 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "当前节目内容表(节目已更改)需要刷新" + +#: application/models/Scheduler.php:140 application/models/Scheduler.php:492 +#: application/models/Scheduler.php:532 application/models/Scheduler.php:573 +msgid "The schedule you're viewing is out of date!" +msgstr "当前节目内容需要刷新!" + +#: application/models/Scheduler.php:149 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "没有赋予修改节目 %s 的权限。" + +#: application/models/Scheduler.php:153 +msgid "You cannot add files to recording shows." +msgstr "录音节目不能添加别的内容。" + +#: application/models/Scheduler.php:159 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "节目%s已结束,不能在添加任何内容。" + +#: application/models/Scheduler.php:167 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "节目%s已经更改,需要刷新后再尝试。" + +#: application/models/Scheduler.php:187 +msgid "Content in linked shows cannot be changed while on air!" +msgstr "" + +#: application/models/Scheduler.php:202 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: application/models/Scheduler.php:228 application/models/Scheduler.php:320 +msgid "A selected File does not exist!" +msgstr "某个选中的文件不存在。" + +#: application/models/Show.php:229 msgid "Shows can have a max length of 24 hours." msgstr "节目时长只能设置在24小时以内" -#: legacy/application/models/Show.php:331 +#: application/models/Show.php:345 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." @@ -5389,138 +4063,223 @@ msgstr "" "节目时间设置于其他的节目有冲突。\n" "提示:修改系列节目中的一个,将影响整个节目系列" -#: legacy/application/models/Block.php:1451 -#: legacy/application/models/Block.php:1551 -msgid "Upload Time" +#: application/models/ShowBuilder.php:210 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "%s是%s的重播" + +#: application/models/Webstream.php:163 +msgid "Length needs to be greater than 0 minutes" +msgstr "节目时长必须大于0分钟" + +#: application/models/Webstream.php:167 +msgid "Length should be of form \"00h 00m\"" +msgstr "时间的格式应该是 \"00h 00m\"" + +#: application/models/Webstream.php:180 +msgid "URL should be of form \"http://domain\"" +msgstr "地址的格式应该是 \"http://domain\"" + +#: application/models/Webstream.php:183 +msgid "URL should be 512 characters or less" +msgstr "地址的最大长度不能超过512字节" + +#: application/models/Webstream.php:188 +msgid "No MIME type found for webstream." +msgstr "这个媒体流不存在MIME属性,无法添加" + +#: application/models/Webstream.php:204 +msgid "Webstream name cannot be empty" +msgstr "媒体流的名字不能为空" + +#: application/models/Webstream.php:274 +msgid "Could not parse XSPF playlist" +msgstr "发现XSPF格式的播放列表,但是格式错误" + +#: application/models/Webstream.php:295 +msgid "Could not parse PLS playlist" +msgstr "发现PLS格式的播放列表,但是格式错误" + +#: application/models/Webstream.php:314 +msgid "Could not parse M3U playlist" +msgstr "发现M3U格式的播放列表,但是格式错误" + +#: application/models/Webstream.php:327 +msgid "Invalid webstream - This appears to be a file download." +msgstr "媒体流格式错误,当前“媒体流”只是一个可下载的文件" + +#: application/models/Webstream.php:331 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "未知的媒体流格式: %s" + +#: application/services/CalendarService.php:48 +msgid "Record file doesn't exist" +msgstr "录制文件不存在" + +#: application/services/CalendarService.php:52 +msgid "View Recorded File Metadata" +msgstr "查看录制文件的元数据" + +#: application/services/CalendarService.php:78 +msgid "Schedule Tracks" msgstr "" -#: legacy/application/configs/navigation.php:25 -msgid "Radio Page" +#: application/services/CalendarService.php:101 +msgid "Clear Show" msgstr "" -#: legacy/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "节目日程" - -#: legacy/application/configs/navigation.php:41 -msgid "Widgets" +#: application/services/CalendarService.php:115 +#: application/services/CalendarService.php:120 +msgid "Cancel Show" msgstr "" -#: legacy/application/configs/navigation.php:64 -msgid "Settings" +#: application/services/CalendarService.php:141 +#: application/services/CalendarService.php:160 +msgid "Edit Instance" msgstr "" -#: legacy/application/configs/navigation.php:83 -msgid "Users" -msgstr "用户管理" +#: application/services/CalendarService.php:153 +#: application/services/CalendarService.php:167 +msgid "Edit Show" +msgstr "编辑节目" -#: legacy/application/configs/navigation.php:89 -msgid "Track Types" +#: application/services/CalendarService.php:189 +msgid "Delete Instance" msgstr "" -#: legacy/application/configs/navigation.php:96 -msgid "Streams" -msgstr "媒体流设置" - -#: legacy/application/configs/navigation.php:112 -msgid "Analytics" +#: application/services/CalendarService.php:195 +msgid "Delete Instance and All Following" msgstr "" -#: legacy/application/configs/navigation.php:128 -msgid "History Templates" -msgstr "历史记录模板" +#: application/services/CalendarService.php:250 +msgid "Permission denied" +msgstr "没有编辑权限" -#: legacy/application/configs/navigation.php:135 -msgid "Listener Stats" -msgstr "收听状态" +#: application/services/CalendarService.php:254 +msgid "Can't drag and drop repeating shows" +msgstr "系列中的节目无法拖拽" -#: legacy/application/configs/navigation.php:142 -msgid "Show Listener Stats" +#: application/services/CalendarService.php:263 +msgid "Can't move a past show" +msgstr "已经结束的节目无法更改时间" + +#: application/services/CalendarService.php:298 +msgid "Can't move show into past" +msgstr "节目不能设置到已过去的时间点" + +#: application/services/CalendarService.php:323 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "录音和重播节目之间的间隔必须大于等于1小时。" + +#: application/services/CalendarService.php:335 +msgid "Show was deleted because recorded show does not exist!" +msgstr "录音节目不存在,节目已删除!" + +#: application/services/CalendarService.php:342 +msgid "Must wait 1 hour to rebroadcast." +msgstr "重播节目必须设置于1小时之后。" + +#: application/services/HistoryService.php:1064 +msgid "Track" +msgstr "曲目" + +#: application/services/HistoryService.php:1105 +msgid "Played" +msgstr "已播放" + +#: application/services/PodcastService.php:163 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: legacy/application/configs/navigation.php:160 -msgid "Getting Started" -msgstr "基本用法" - -#: legacy/application/configs/navigation.php:167 -msgid "User Manual" -msgstr "用户手册" - -#: legacy/application/configs/navigation.php:172 -msgid "Get Help Online" +#: application/views/scripts/partialviews/dashboard-sub-nav.php:18 +msgid "Webstreams" msgstr "" -#: legacy/application/configs/navigation.php:177 -msgid "Contribute to LibreTime" -msgstr "" - -#: legacy/application/configs/navigation.php:182 -msgid "What's New?" -msgstr "" - -#: legacy/public/setup/rabbitmq-setup.php:72 +#: public/setup/rabbitmq-setup.php:80 msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct." msgstr "" -#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." -#~ msgstr "因为满足条件的声音文件数量有限,只能播放列表指定的时长可能无法达成。如果你不介意出现重复的项目,你可以启用此项。" +#~ msgid " to " +#~ msgstr "到" -#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." -#~ msgstr "如果Airtime配置在路由器或者防火墙之后,你可能需要配置端口转发,所以当前文本框内的信息需要调整。在这种情况下,就需要人工指定该信息以确定所显示的主机名/端口/加载点的正确性,从而让节目编辑能连接的上。端口所允许的范围,介于1024到49151之间。" +#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." +#~ msgstr "(为了推广您的电台,请启用‘发送支持反馈’)" -#~ msgid "For more details, please read the %sAirtime Manual%s" -#~ msgstr "更多的细节可以参阅%sAirtime用户手册%s" +#~ msgid "(Required)" +#~ msgstr "(必填)" -#~ msgid "Progam Managers can do the following:" -#~ msgstr "节目主管的权限是:" +#~ msgid "(Your radio station website)" +#~ msgstr "(你电台的网站)" -#~ msgid "Support setting updated." -#~ msgstr "支持设定已更新。" +#~ msgid "(for verification purposes only, will not be published)" +#~ msgstr "(仅作为验证目的使用,不会用于发布)" -#~ msgid "Support Feedback" -#~ msgstr "意见反馈" +#~ msgid "(hh:mm:ss.t)" +#~ msgstr "(时:分:秒.分秒)" -#~ msgid "Type the characters you see in the picture below." -#~ msgstr "请输入图像里的字符。" +#~ msgid "(ss.t)" +#~ msgstr "(秒.分秒)" -#~ msgid "Phone:" -#~ msgstr "电话:" +#~ msgid "About" +#~ msgstr "关于" -#~ msgid "Station Web Site:" -#~ msgstr "电台网址:" +#~ msgid "Add New Field" +#~ msgstr "添加新项目" -#~ msgid "Country:" -#~ msgstr "国家:" +#~ msgid "Add more elements" +#~ msgstr "增加更多元素" -#~ msgid "City:" -#~ msgstr "城市:" +#~ msgid "Add this show" +#~ msgstr "添加此节目" -#~ msgid "Station Description:" -#~ msgstr "电台描述:" +#~ msgid "Additional Options" +#~ msgstr "附属选项" -#~ msgid "You have to agree to privacy policy." -#~ msgstr "请先接受隐私策略" - -#~ msgid "Default License:" -#~ msgstr "默认版权策略:" +#~ msgid "Advanced Search Options" +#~ msgstr "高级查询选项" #~ msgid "All rights are reserved" #~ msgstr "版权所有" -#~ msgid "The work is in the public domain" -#~ msgstr "公开" +#~ msgid "Audio Track" +#~ msgstr "音频文件" + +#~ msgid "Choose Days:" +#~ msgstr "选择天数:" + +#~ msgid "Choose Show Instance" +#~ msgstr "选择节目项" + +#~ msgid "Choose folder" +#~ msgstr "选择文件夹" + +#~ msgid "City:" +#~ msgstr "城市:" + +#~ msgid "Clear" +#~ msgstr "清除" + +#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" +#~ msgstr "绑定的节目要么提前设置好,要么等待其中的任何一个节目结束后才能编辑内容" + +#~ msgid "Country:" +#~ msgstr "国家:" + +#~ msgid "Creating File Summary Template" +#~ msgstr "创建文件播放记录模板" + +#~ msgid "Creating Log Sheet Template" +#~ msgstr "创建历史记录表单模板" #~ msgid "Creative Commons Attribution" #~ msgstr "知识共享署名" -#~ msgid "Creative Commons Attribution Noncommercial" -#~ msgstr "知识共享署名-非商业应用" - #~ msgid "Creative Commons Attribution No Derivative Works" #~ msgstr "知识共享署名-不允许衍生" -#~ msgid "Creative Commons Attribution Share Alike" -#~ msgstr "知识共享署名-相同方式共享" +#~ msgid "Creative Commons Attribution Noncommercial" +#~ msgstr "知识共享署名-非商业应用" #~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works" #~ msgstr "知识共享署名-非商业应用且不允许衍生" @@ -5528,38 +4287,370 @@ msgstr "" #~ msgid "Creative Commons Attribution Noncommercial Share Alike" #~ msgstr "知识共享署名-非商业应用且相同方式共享" -#~ msgid "Register Airtime" -#~ msgstr "注册Airtime" +#~ msgid "Creative Commons Attribution Share Alike" +#~ msgstr "知识共享署名-相同方式共享" -#~ msgid "(for verification purposes only, will not be published)" -#~ msgstr "(仅作为验证目的使用,不会用于发布)" +#~ msgid "Cue In: " +#~ msgstr "切入:" -#~ msgid "Show me what I am sending " -#~ msgstr "显示我所发送的信息" +#~ msgid "Cue Out: " +#~ msgstr "切出:" -#~ msgid "Terms and Conditions" -#~ msgstr "使用条款" +#~ msgid "Current Import Folder:" +#~ msgstr "当前的导入文件夹:" -#~ msgid "files meet the criteria" -#~ msgstr "个文件符合条件" +#~ msgid "Cursor" +#~ msgstr "设置游标" -#~ msgid "(In order to promote your station, 'Send support feedback' must be enabled)." -#~ msgstr "(为了推广您的电台,请启用‘发送支持反馈’)" +#~ msgid "Default Length:" +#~ msgstr "默认长度:" -#~ msgid "Your trial expires in" -#~ msgstr "你的试用天数还剩" +#~ msgid "Default License:" +#~ msgstr "默认版权策略:" -#~ msgid "This version will soon be obsolete." -#~ msgstr "这个版本即将过时。" +#~ msgid "Disk Space" +#~ msgstr "磁盘空间" -#~ msgid "This version is no longer supported." -#~ msgstr "这个版本即将停支持。" +#~ msgid "Dynamic Smart Block" +#~ msgstr "动态智能模块" + +#~ msgid "Dynamic Smart Block Criteria: " +#~ msgstr "动态智能模块条件:" + +#~ msgid "Empty playlist content" +#~ msgstr "播放列表无内容" + +#~ msgid "Expand Dynamic Block" +#~ msgstr "展开动态智能模块" + +#~ msgid "Expand Static Block" +#~ msgstr "展开静态智能模块" + +#~ msgid "Fade in: " +#~ msgstr "淡入:" + +#~ msgid "Fade out: " +#~ msgstr "淡出:" + +#~ msgid "File Path:" +#~ msgstr "文件路径:" + +#~ msgid "File Summary" +#~ msgstr "文件播放记录" + +#~ msgid "File Summary Templates" +#~ msgstr "文件播放记录模板列表" + +#~ msgid "File import in progress..." +#~ msgstr "导入文件进行中..." + +#~ msgid "Filter History" +#~ msgstr "历史记录过滤" + +#~ msgid "Find" +#~ msgstr "查找" + +#~ msgid "Find Shows" +#~ msgstr "查找节目" + +#~ msgid "First Name" +#~ msgstr "名" + +#, php-format +#~ msgid "For more detailed help, read the %suser manual%s." +#~ msgstr "详细的指导,可以参考%s用户手册%s。" + +#~ msgid "For more details, please read the %sAirtime Manual%s" +#~ msgstr "更多的细节可以参阅%sAirtime用户手册%s" + +#~ msgid "If Airtime is behind a router or firewall, you may need to configure port forwarding and this field information will be incorrect. In this case you will need to manually update this field so it shows the correct host/port/mount that your DJ's need to connect to. The allowed range is between 1024 and 49151." +#~ msgstr "如果Airtime配置在路由器或者防火墙之后,你可能需要配置端口转发,所以当前文本框内的信息需要调整。在这种情况下,就需要人工指定该信息以确定所显示的主机名/端口/加载点的正确性,从而让节目编辑能连接的上。端口所允许的范围,介于1024到49151之间。" + +#~ msgid "Isrc Number:" +#~ msgstr "ISRC编号:" + +#~ msgid "Last Name" +#~ msgstr "姓" + +#~ msgid "Length:" +#~ msgstr "长度:" + +#~ msgid "Limit to " +#~ msgstr "限制到" + +#~ msgid "Listen" +#~ msgstr "收听" + +#~ msgid "Live Stream Input" +#~ msgstr "输入流设置" + +#~ msgid "Live stream" +#~ msgstr "插播流" + +#~ msgid "Log Sheet" +#~ msgstr "历史记录表单" + +#~ msgid "Log Sheet Templates" +#~ msgstr "历史记录表单模板" + +#~ msgid "Logout" +#~ msgstr "登出" + +#~ msgid "Looks like the page you were looking for doesn't exist!" +#~ msgstr "你所寻找的页面不存在!" + +#~ msgid "Manage Users" +#~ msgstr "用户管理" + +#~ msgid "Master Source" +#~ msgstr "主输入流" + +#~ msgid "New File Summary Template" +#~ msgstr "新建文件播放记录模板" + +#~ msgid "New Log Sheet Template" +#~ msgstr "新建历史记录模板" + +#~ msgid "New User" +#~ msgstr "新建用户" + +#~ msgid "New password" +#~ msgstr "新密码" + +#~ msgid "Next:" +#~ msgstr "之后的:" + +#~ msgid "No File Summary Templates" +#~ msgstr "无文件播放记录模板" + +#~ msgid "No Log Sheet Templates" +#~ msgstr "无历史记录表单模板" + +#~ msgid "No open playlist" +#~ msgstr "没有打开的播放列表" + +#~ msgid "No webstream" +#~ msgstr "没有网络流媒体" + +#~ msgid "OK" +#~ msgstr "确定" + +#~ msgid "ON AIR" +#~ msgstr "直播中" + +#~ msgid "Original Length:" +#~ msgstr "原始长度:" + +#~ msgid "Page not found!" +#~ msgstr "页面不存在!" + +#~ msgid "Phone:" +#~ msgstr "电话:" + +#~ msgid "Play" +#~ msgstr "试听" + +#~ msgid "Playlist Contents: " +#~ msgstr "播放列表内容:" + +#~ msgid "Playlist crossfade" +#~ msgstr "播放列表交错淡入淡出效果" + +#~ msgid "Please enter and confirm your new password in the fields below." +#~ msgstr "请再次输入你的新密码。" #~ msgid "Please upgrade to " #~ msgstr "请升级到" +#~ msgid "Previous:" +#~ msgstr "之前的:" + +#~ msgid "Progam Managers can do the following:" +#~ msgstr "节目主管的权限是:" + +#~ msgid "Register Airtime" +#~ msgstr "注册Airtime" + +#~ msgid "Remove watched directory" +#~ msgstr "移除监控文件夹" + +#~ msgid "Repeat Days:" +#~ msgstr "重复天数:" + +#~ msgid "Sample Rate:" +#~ msgstr "样本率:" + +#~ msgid "Save playlist" +#~ msgstr "保存播放列表" + +#~ msgid "Select stream:" +#~ msgstr "选择流:" + +#~ msgid "Set" +#~ msgstr "设置" + +#~ msgid "Set Cue In" +#~ msgstr "设为切入时间" + +#~ msgid "Set Cue Out" +#~ msgstr "设为切出时间" + +#~ msgid "Set Default Template" +#~ msgstr "设为默认模板" + +#~ msgid "Share" +#~ msgstr "共享" + +#~ msgid "Show Source" +#~ msgstr "节目定制的输入流" + +#~ msgid "Show Summary" +#~ msgstr "节目播放记录" + +#~ msgid "Show Waveform" +#~ msgstr "显示波形图" + +#~ msgid "Show me what I am sending " +#~ msgstr "显示我所发送的信息" + +#~ msgid "Shuffle playlist" +#~ msgstr "随机打乱播放列表" + +#~ msgid "Source Streams" +#~ msgstr "输入流" + +#~ msgid "Static Smart Block" +#~ msgstr "静态智能模块" + +#~ msgid "Static Smart Block Contents: " +#~ msgstr "静态智能模块条件:" + +#~ msgid "Station Description:" +#~ msgstr "电台描述:" + +#~ msgid "Station Web Site:" +#~ msgstr "电台网址:" + +#~ msgid "Stop" +#~ msgstr "暂停" + +#~ msgid "Stream " +#~ msgstr "流" + +#~ msgid "Stream Settings" +#~ msgstr "流设定" + +#~ msgid "Stream URL:" +#~ msgstr "流的链接地址:" + +#~ msgid "Stream URL: " +#~ msgstr "流的链接地址:" + +#~ msgid "Style" +#~ msgstr "风格" + +#~ msgid "Support Feedback" +#~ msgstr "意见反馈" + +#~ msgid "Support setting updated." +#~ msgstr "支持设定已更新。" + +#~ msgid "Terms and Conditions" +#~ msgstr "使用条款" + +#~ msgid "The desired block length will not be reached if Airtime cannot find enough unique tracks to match your criteria. Enable this option if you wish to allow tracks to be added multiple times to the smart block." +#~ msgstr "因为满足条件的声音文件数量有限,只能播放列表指定的时长可能无法达成。如果你不介意出现重复的项目,你可以启用此项。" + +#~ msgid "The following info will be displayed to listeners in their media player:" +#~ msgstr "以下内容将会在听众的媒体播放器上显示:" + +#~ msgid "The work is in the public domain" +#~ msgstr "公开" + +#~ msgid "This version is no longer supported." +#~ msgstr "这个版本即将停支持。" + +#~ msgid "This version will soon be obsolete." +#~ msgstr "这个版本即将过时。" + +#, php-format +#~ msgid "To play the media you will need to either update your browser to a recent version or update your %sFlash plugin%s." +#~ msgstr "想要播放媒体,需要更新你的浏览器到最新的版本,或者更新你的%sFalsh插件%s。" + +#~ msgid "Track:" +#~ msgstr "曲目编号:" + +#~ msgid "Type the characters you see in the picture below." +#~ msgstr "请输入图像里的字符。" + +#~ msgid "Update Required" +#~ msgstr "需要更新升级" + +#~ msgid "Update show" +#~ msgstr "更新节目" + +#~ msgid "User Type" +#~ msgstr "用户类型" + +#~ msgid "Web Stream" +#~ msgstr "网络流媒体" + +#~ msgid "What" +#~ msgstr "名称" + +#~ msgid "When" +#~ msgstr "时间" + +#~ msgid "Who" +#~ msgstr "管理和编辑" + +#~ msgid "You are not watching any media folders." +#~ msgstr "你没有正在监控的文件夹。" + +#~ msgid "You have to agree to privacy policy." +#~ msgstr "请先接受隐私策略" + +#~ msgid "Your trial expires in" +#~ msgstr "你的试用天数还剩" + +#~ msgid "and" +#~ msgstr "和" + +#~ msgid "dB" +#~ msgstr "分贝" + +#~ msgid "files meet the criteria" +#~ msgstr "个文件符合条件" + +#~ msgid "id" +#~ msgstr "编号" + +#~ msgid "max volume" +#~ msgstr "最大音量" + +#~ msgid "mute" +#~ msgstr "静音" + +#~ msgid "next" +#~ msgstr "往后" + +#~ msgid "or" +#~ msgstr "或" + +#~ msgid "pause" +#~ msgstr "暂停" + +#~ msgid "play" +#~ msgstr "播放" + #~ msgid "please put in a time in seconds '00 (.0)'" #~ msgstr "请输入秒数‘00(.0)’" -#~ msgid "Content in linked shows must be scheduled before or after any one is broadcasted" -#~ msgstr "绑定的节目要么提前设置好,要么等待其中的任何一个节目结束后才能编辑内容" +#~ msgid "previous" +#~ msgstr "往前" + +#~ msgid "stop" +#~ msgstr "停止" + +#~ msgid "unmute" +#~ msgstr "取消静音"